projet-long/.vscode/settings.json
Laurent Fainsin d65dc7b136 feat: dataset augmentation
Former-commit-id: 6f26e70e716f08b8ae3c92cf9693d00a5e67a9a6 [formerly 0d59c038239feb6617a0af75aa32247064dabfdc]
Former-commit-id: 3a3b32107a90986d3f2580d375ceef1e2f1c2256
2022-09-02 14:34:18 +02:00

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