nutshell/.vscode/settings.json

29 lines
762 B
JSON
Raw Normal View History

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