2022-06-27 13:39:44 +00:00
|
|
|
{
|
|
|
|
"python.formatting.provider": "black",
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"python.linting.enabled": true,
|
|
|
|
"python.linting.lintOnSave": true,
|
|
|
|
// "python.linting.flake8Enabled": true,
|
|
|
|
// "python.linting.banditEnabled": true,
|
2022-08-23 11:09:44 +00:00
|
|
|
"python.defaultInterpreterPath": ".venv/bin/python",
|
2022-06-27 13:39:44 +00:00
|
|
|
"[python]": {
|
|
|
|
"editor.codeActionsOnSave": {
|
|
|
|
"source.organizeImports": true
|
|
|
|
}
|
|
|
|
},
|
2022-09-02 12:34:18 +00:00
|
|
|
"jupyter.debugJustMyCode": false,
|
2022-07-08 11:35:24 +00:00
|
|
|
"files.exclude": {
|
|
|
|
"**/.git": true,
|
|
|
|
"**/.svn": true,
|
|
|
|
"**/.hg": true,
|
|
|
|
"**/CVS": true,
|
|
|
|
"**/.DS_Store": true,
|
|
|
|
"**/Thumbs.db": true,
|
|
|
|
"**/__pycache__": true,
|
|
|
|
}
|
2022-09-02 12:34:18 +00:00
|
|
|
}
|