2021-10-30 11:29:00 +00:00
|
|
|
{
|
2022-02-12 13:43:42 +00:00
|
|
|
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
|
2022-02-06 16:17:23 +00:00
|
|
|
"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": [
|
2022-02-12 13:43:42 +00:00
|
|
|
"${workspaceFolder}/mgba/src/platform/python",
|
2022-02-06 16:17:23 +00:00
|
|
|
],
|
2021-10-30 11:29:00 +00:00
|
|
|
}
|