updates vscode settings

This commit is contained in:
Mose Müller 2023-12-18 12:03:08 +01:00
parent a48cce32e4
commit 9cbc639d0f
3 changed files with 6 additions and 5 deletions

View File

@ -2,6 +2,7 @@
"recommendations": [
"charliermarsh.ruff",
"ms-python.python",
"ms-python.vscode-pylance"
"ms-python.vscode-pylance",
"ms-python.mypy-type-checker"
]
}

2
.vscode/launch.json vendored
View File

@ -6,7 +6,7 @@
"type": "python",
"request": "launch",
"module": "foo",
"justMyCode": true,
"justMyCode": false,
"env": {
"ENVIRONMENT": "development"
}

View File

@ -8,8 +8,8 @@
"editor.tabSize": 4,
"editor.detectIndentation": false,
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.fixAll": true
"source.organizeImports": "explicit",
"source.fixAll": "explicit"
}
},
"[yaml]": {
@ -23,7 +23,7 @@
"editor.formatOnType": false,
"editor.formatOnSaveMode": "file",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
}
}
}