2022-11-25 10:14:04 +00:00
|
|
|
{
|
|
|
|
"python.defaultInterpreterPath": ".venv/bin/python",
|
|
|
|
"python.analysis.typeCheckingMode": "basic",
|
|
|
|
"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.languageServer": "Pylance",
|
|
|
|
"[python]": {
|
|
|
|
"editor.codeActionsOnSave": {
|
|
|
|
"source.organizeImports": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"files.exclude": {
|
|
|
|
"**/.git": true,
|
|
|
|
"**/.svn": true,
|
|
|
|
"**/.hg": true,
|
|
|
|
"**/CVS": true,
|
|
|
|
"**/.DS_Store": true,
|
|
|
|
"**/Thumbs.db": true,
|
|
|
|
"**/__pycache__": true,
|
|
|
|
"**/.mypy_cache": true,
|
|
|
|
},
|
2022-12-28 16:55:31 +00:00
|
|
|
"nixEnvSelector.nixFile": "${workspaceRoot}/shell.nix",
|
2022-11-25 10:14:04 +00:00
|
|
|
}
|