nutshell/.vscode/settings.json

29 lines
762 B
JSON
Executable File

{
"editor.rulers": [
120
],
"editor.formatOnSave": true,
"python.analysis.autoImportCompletions": false,
"[python]": {
"gitlens.codeLens.symbolScopes": [
"!Module"
],
"editor.formatOnType": false,
"editor.wordBasedSuggestions": "off",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "ms-python.black-formatter"
},
"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,
}