mirror of
https://github.com/Casvt/MIND.git
synced 2026-02-19 11:54:46 -05:00
18 lines
485 B
JSON
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
|
|
}
|
|
}
|
|
]
|
|
} |