mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2026-02-25 10:30:16 +00:00
33 lines
914 B
JSON
33 lines
914 B
JSON
{
|
|
"git.closeDiffOnOperation": true,
|
|
|
|
"[python]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "ms-python.black-formatter",
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit",
|
|
"source.fixAll": "explicit",
|
|
},
|
|
},
|
|
|
|
"python.languageServer": "Pylance",
|
|
"python.analysis.autoImportCompletions": true,
|
|
"python.analysis.importFormat": "relative",
|
|
"python.analysis.fixAll": [
|
|
"source.convertImportFormat",
|
|
"source.unusedImports",
|
|
],
|
|
"python.analysis.typeCheckingMode": "basic",
|
|
"python.analysis.diagnosticMode": "workspace",
|
|
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.pytestEnabled": true,
|
|
"python.testing.pytestArgs": [
|
|
"--import-mode=importlib",
|
|
"test",
|
|
],
|
|
|
|
"black-formatter.importStrategy": "fromEnvironment",
|
|
"flake8.importStrategy": "fromEnvironment",
|
|
"isort.importStrategy": "fromEnvironment",
|
|
}
|