mirror of
https://github.com/Laurent2916/REVA-QCAV.git
synced 2024-11-08 14:39:00 +00:00
0cb52febd7
Former-commit-id: 502f9821bddd45574a46cdfe017524a6fac9f102 [formerly 5e2f3679b65b8ae554e1cdd3e1c13ae190e07bd0] Former-commit-id: 6337e42ef9b051064a9cb2716ef37b272b09673e
24 lines
573 B
JSON
24 lines
573 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
|
|
}
|
|
},
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.svn": true,
|
|
"**/.hg": true,
|
|
"**/CVS": true,
|
|
"**/.DS_Store": true,
|
|
"**/Thumbs.db": true,
|
|
"**/__pycache__": true,
|
|
}
|
|
}
|