12345678910111213141516171819202122232425262728293031323334353637 |
- {
- "semi": true,
- "singleQuote": true,
- "singleAttributePerLine": false,
- "htmlWhitespaceSensitivity": "css",
- "printWidth": 150,
- "plugins": ["@trivago/prettier-plugin-sort-imports", "prettier-plugin-tailwindcss", "@prettier/plugin-php", "prettier-plugin-blade"],
- "tailwindFunctions": ["clsx", "cn"],
- "tailwindStylesheet": "resources/css/app.css",
- "tabWidth": 4,
- "overrides": [
- {
- "files": "**/*.yml",
- "options": {
- "tabWidth": 2
- }
- },
- {
- "files": ["*.php"],
- "options": {
- "parser": "php"
- }
- },
- {
- "files": ["*.blade.php"],
- "options": {
- "parser": "blade"
- }
- }
- ],
- "importOrder": [
- "<THIRD_PARTY_MODULES>",
- "^@/(.*)$"
- ],
- "importOrderSeparation": true,
- "importOrderSortSpecifiers": true
- }
|