timetracker/.vscode/settings.json

34 lines
871 B
JSON
Raw Normal View History

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