mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2026-02-25 02:20:17 +00:00
- uses astral.sh tooling: uv, ruff, ty - removed legacy tools - some minor python fixes
31 lines
812 B
JSON
31 lines
812 B
JSON
{
|
|
"git.closeDiffOnOperation": true,
|
|
|
|
"[python]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "charliermarsh.ruff",
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit",
|
|
"source.fixAll": "explicit",
|
|
},
|
|
},
|
|
|
|
// "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",
|
|
],
|
|
|
|
"ty.diagnosticMode": "workspace",
|
|
"ruff.nativeServer": "on",
|
|
}
|