timetracker/.vscode/settings.json

34 lines
871 B
JSON
Raw Normal View History

{
"python.testing.pytestArgs": [
"tests"
],
"python.testing.unittestEnabled": false,
2023-01-05 22:01:27 +01:00
"python.testing.pytestEnabled": true,
2024-08-08 09:27:36 +02:00
"python.analysis.typeCheckingMode": "strict",
2023-09-30 16:25:05 +02:00
"[python]": {
2024-08-11 17:23:59 +02:00
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
2023-09-30 16:25:05 +02:00
},
2024-08-12 21:42:47 +02:00
"ruff.path": ["/nix/store/jaibb3v0rrnlw5ib54qqq3452yhp1xcb-ruff-0.5.7/bin/ruff"],
2024-08-08 14:48:10 +02:00
"tailwind-fold.supportedLanguages": [
"html",
"typescriptreact",
"javascriptreact",
"typescript",
"javascript",
"vue-html",
"vue",
"php",
"markdown",
"coffeescript",
"svelte",
"astro",
"erb",
"django-html"
]
2023-09-30 16:25:05 +02:00
}