Files
beancount-plugins-test/.vscode/tasks.json
David Duran Rosich f712017ac4 Initial commit
2026-07-20 15:59:47 +02:00

33 lines
773 B
JSON

{
"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": []
}
]
}