booplaysgba/.vscode/settings.json
2022-03-03 23:35:45 +01:00

18 lines
457 B
JSON

{
"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": [
"${workspaceFolder}/src/mgba/src/platform/python",
],
}