diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 1f6d128..223d4c9 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -5,6 +5,7 @@ "lokalise.i18n-ally", "antfu.iconify", "dbaeumer.vscode-eslint", - "voorjaar.windicss-intellisense" + "voorjaar.windicss-intellisense", + "csstools.postcss" ] } diff --git a/.vscode/settings.json b/.vscode/settings.json index 7bc7e8a..5a57608 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,11 +1,17 @@ { - "volar.tsPlugin": true, - "i18n-ally.localesPaths": "locales", + "cSpell.words": ["Vitesse"], "i18n-ally.keystyle": "nested", + "i18n-ally.localesPaths": "locales", "i18n-ally.sortKeys": true, - "cSpell.words": [ - "Vitesse" - ], + "prettier.enable": false, "typescript.tsdk": "node_modules/typescript/lib", - "volar.tsPluginStatus": false + "volar.style.defaultLanguage": "postcss", + "volar.tsPlugin": true, + "volar.tsPluginStatus": false, + "editor.codeActionsOnSave": { + "source.fixAll.eslint": true, + }, + "files.associations": { + "*.css": "postcss", + }, }