mirror of
https://github.com/Laurent2916/REVA-QCAV.git
synced 2024-11-09 15:02:03 +00:00
c312513eff
Former-commit-id: 781a11f646964567b3bc6831caa5e380748b84e1 [formerly 7ea5f37ecb7fd5c95e5d1b7b1aa899d986ecff2a] Former-commit-id: 06974fa163a6a8eb881d5981f9c6debe63f1b4bb
26 lines
625 B
JSON
26 lines
625 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,
|
|
"**/.mypy_cache": true,
|
|
}
|
|
}
|