REVA-QCAV/.vscode/settings.json
Laurent Fainsin ea9430a1ff feat: organize deps
feat: install mypy + flake8

Former-commit-id: 4407267fc6dcc9d57dee9fbf6a237ef3e591c24e [formerly 62975cac35edef005c3faee38f18e062fa7a152c]
Former-commit-id: b3d239adf8e334f97aa509684a7d6a0c6ebfeb11
2022-09-12 10:58:57 +02:00

28 lines
705 B
JSON

{
"python.defaultInterpreterPath": ".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,
"jupyter.debugJustMyCode": false,
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"files.insertFinalNewline": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/__pycache__": true,
"**/.mypy_cache": true,
}
}