mirror of
https://github.com/Laurent2916/REVA-QCAV.git
synced 2024-11-08 14:39:00 +00:00
d65dc7b136
Former-commit-id: 6f26e70e716f08b8ae3c92cf9693d00a5e67a9a6 [formerly 0d59c038239feb6617a0af75aa32247064dabfdc] Former-commit-id: 3a3b32107a90986d3f2580d375ceef1e2f1c2256
24 lines
608 B
JSON
24 lines
608 B
JSON
{
|
|
"python.formatting.provider": "black",
|
|
"editor.formatOnSave": true,
|
|
"python.linting.enabled": true,
|
|
"python.linting.lintOnSave": true,
|
|
// "python.linting.flake8Enabled": true,
|
|
// "python.linting.banditEnabled": true,
|
|
"python.defaultInterpreterPath": ".venv/bin/python",
|
|
"[python]": {
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true
|
|
}
|
|
},
|
|
"jupyter.debugJustMyCode": false,
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.svn": true,
|
|
"**/.hg": true,
|
|
"**/CVS": true,
|
|
"**/.DS_Store": true,
|
|
"**/Thumbs.db": true,
|
|
"**/__pycache__": true,
|
|
}
|
|
} |