Initial commit

This commit is contained in:
David Duran Rosich
2026-07-20 15:59:47 +02:00
commit f712017ac4
9 changed files with 1055 additions and 0 deletions

32
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,32 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "bean-check",
"type": "shell",
"command": "uv run bean-check split_test.bean",
"options": {
"env": {
"PYTHONPATH": "."
}
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "fava",
"type": "shell",
"command": "uv run fava split_test.bean",
"options": {
"env": {
"PYTHONPATH": "."
}
},
"isBackground": true,
"problemMatcher": []
}
]
}