classroomstuff/.prettierrc
2025-05-17 14:12:52 +05:30

17 lines
303 B
Text

{
"useTabs": true,
"singleQuote": false,
"trailingComma": "all",
"printWidth": 100,
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
],
"tabWidth": 4,
"svelteAllowShorthand": true
}