updates VS Code settings.json

This commit is contained in:
Mose Müller 2023-11-27 15:43:36 +01:00
parent f67591c7ac
commit a89db46d5e

11
.vscode/settings.json vendored
View File

@ -3,19 +3,12 @@
"autoDocstring.startOnNewLine": true, "autoDocstring.startOnNewLine": true,
"autoDocstring.generateDocstringOnEnter": true, "autoDocstring.generateDocstringOnEnter": true,
"editor.formatOnSave": true, "editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.rulers": [ "editor.rulers": [
88 88
], ],
"python.defaultInterpreterPath": ".venv/bin/python", "python.defaultInterpreterPath": ".venv/bin/python",
"python.formatting.provider": "black",
"python.linting.lintOnSave": true,
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": true,
"[python]": { "[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.tabSize": 4, "editor.tabSize": 4,
"editor.detectIndentation": false, "editor.detectIndentation": false,
"editor.codeActionsOnSave": { "editor.codeActionsOnSave": {
@ -37,4 +30,4 @@
"source.fixAll.eslint": true "source.fixAll.eslint": true
} }
} }
} }