Files
MIND/.vscode/tasks.json
2025-05-17 20:01:19 +02:00

18 lines
485 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Python: Format All",
"type": "shell",
"command": "python3 -m isort .; python3 -m autopep8 --in-place -r .",
"windows": {
"command": "python -m isort .; python -m autopep8 --in-place -r ."
},
"group": "build",
"presentation": {
"reveal": "silent",
"clear": true
}
}
]
}