projet-long/.vscode/settings.json

24 lines
608 B
JSON
Raw Normal View History

{
"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,
}
}