booplaysgba/.vscode/settings.json
2021-11-01 13:53:09 +01:00

19 lines
534 B
JSON

{
"python.pythonPath": ".venv/bin/python",
"python.formatting.provider": "black",
"editor.formatOnSave": true,
"python.linting.enabled": true,
"python.linting.lintOnSave": true,
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": true,
"python.linting.banditEnabled": true,
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"python.analysis.extraPaths": [
"./mgba/build/python/lib.linux-x86_64-3.9"
],
}