.prettierrc 953 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "semi": true,
  3. "singleQuote": true,
  4. "singleAttributePerLine": false,
  5. "htmlWhitespaceSensitivity": "css",
  6. "printWidth": 150,
  7. "plugins": ["@trivago/prettier-plugin-sort-imports", "prettier-plugin-tailwindcss", "@prettier/plugin-php", "prettier-plugin-blade"],
  8. "tailwindFunctions": ["clsx", "cn"],
  9. "tailwindStylesheet": "resources/css/app.css",
  10. "tabWidth": 4,
  11. "overrides": [
  12. {
  13. "files": "**/*.yml",
  14. "options": {
  15. "tabWidth": 2
  16. }
  17. },
  18. {
  19. "files": ["*.php"],
  20. "options": {
  21. "parser": "php"
  22. }
  23. },
  24. {
  25. "files": ["*.blade.php"],
  26. "options": {
  27. "parser": "blade"
  28. }
  29. }
  30. ],
  31. "importOrder": [
  32. "<THIRD_PARTY_MODULES>",
  33. "^@/(.*)$"
  34. ],
  35. "importOrderSeparation": true,
  36. "importOrderSortSpecifiers": true
  37. }