REVA-QCAV/.vscode/settings.json
Laurent Fainsin a2aeae0b33 style: autoformat
Former-commit-id: ed6c69e23928e8880ce2f3df0d15c2958fb3d1ba [formerly 892c4e0886fd18e0e6282956482b86e3d2d69f19]
Former-commit-id: f615de2570b514abe52a24eff1c2ab14cd394933
2022-09-02 16:33:08 +02:00

25 lines
597 B
JSON

{
"python.defaultInterpreterPath": ".venv/bin/python",
"python.formatting.provider": "black",
"editor.formatOnSave": true,
"python.linting.enabled": true,
"python.linting.lintOnSave": true,
"python.linting.mypyEnabled": 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,
}
}