mirror of
https://github.com/Laurent2916/REVA-QCAV.git
synced 2024-11-08 22:42:02 +00:00
ea9430a1ff
feat: install mypy + flake8 Former-commit-id: 4407267fc6dcc9d57dee9fbf6a237ef3e591c24e [formerly 62975cac35edef005c3faee38f18e062fa7a152c] Former-commit-id: b3d239adf8e334f97aa509684a7d6a0c6ebfeb11
28 lines
705 B
JSON
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,
|
|
}
|
|
}
|