2023-04-09 00:04:20 -06:00
|
|
|
{
|
|
|
|
"editor.rulers": [
|
|
|
|
120
|
|
|
|
],
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"python.analysis.autoImportCompletions": false,
|
|
|
|
"[python]": {
|
|
|
|
"gitlens.codeLens.symbolScopes": [
|
|
|
|
"!Module"
|
|
|
|
],
|
2024-11-11 01:07:18 -07:00
|
|
|
"editor.formatOnType": false,
|
|
|
|
"editor.wordBasedSuggestions": "off",
|
2023-04-09 00:04:20 -06:00
|
|
|
"editor.codeActionsOnSave": {
|
2024-11-11 01:07:18 -07:00
|
|
|
"source.organizeImports": "explicit"
|
|
|
|
},
|
|
|
|
"editor.defaultFormatter": "ms-python.black-formatter"
|
2023-04-09 00:04:20 -06:00
|
|
|
},
|
|
|
|
"files.exclude": {
|
|
|
|
"**/.git": true,
|
|
|
|
"**/.svn": true,
|
|
|
|
"**/.hg": true,
|
|
|
|
"**/CVS": true,
|
|
|
|
"**/.DS_Store": true,
|
|
|
|
"**/Thumbs.db": true,
|
|
|
|
"**/.venv/bin/*": true,
|
|
|
|
"**/.venv/lib": true,
|
|
|
|
},
|
|
|
|
"outline.showVariables": false,
|
|
|
|
}
|