| 12345678910111213141516171819202122232425 |
- {
- "semi": true,
- "singleQuote": true,
- "singleAttributePerLine": false,
- "htmlWhitespaceSensitivity": "css",
- "printWidth": 80,
- "plugins": [
- "prettier-plugin-tailwindcss"
- ],
- "tailwindFunctions": [
- "clsx",
- "cn",
- "cva"
- ],
- "tailwindStylesheet": "resources/css/app.css",
- "tabWidth": 4,
- "overrides": [
- {
- "files": "**/*.yml",
- "options": {
- "tabWidth": 2
- }
- }
- ]
- }
|