booplaysgba/.vscode/settings.json

19 lines
552 B
JSON
Raw Normal View History

2021-10-30 11:29:00 +00:00
{
"python.pythonPath": ".venv/bin/python",
"python.formatting.provider": "black",
2021-10-30 12:38:33 +00:00
"editor.formatOnSave": true,
"python.linting.enabled": true,
"python.linting.lintOnSave": true,
2021-10-30 11:29:00 +00:00
"python.linting.flake8Enabled": true,
2021-10-30 12:38:33 +00:00
"python.linting.mypyEnabled": true,
"python.linting.banditEnabled": true,
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
2021-11-01 12:53:09 +00:00
"python.analysis.extraPaths": [
"./mgba/src/platform/python/build/lib.linux-x86_64-3.9/mgba"
2021-11-01 12:53:09 +00:00
],
2021-10-30 11:29:00 +00:00
}