474f71db3f
Which is the official plugin that helps with auto sorting class names https://www.npmjs.com/package/prettier-plugin-tailwindcss The config follows the recommendation from https://github.com/sveltejs/prettier-plugin-svelte#usage-with-tailwind-prettier-plugin
8 lines
264 B
JSON
8 lines
264 B
JSON
{
|
|
"semi": false,
|
|
"printWidth": 100,
|
|
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
|
|
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }],
|
|
"svelteBracketNewLine": false,
|
|
"htmlWhitespaceSensitivity": "ignore"
|
|
}
|