.prettierrc 503 B

12345678910111213141516171819202122232425
  1. {
  2. "semi": true,
  3. "singleQuote": true,
  4. "singleAttributePerLine": false,
  5. "htmlWhitespaceSensitivity": "css",
  6. "printWidth": 80,
  7. "plugins": [
  8. "prettier-plugin-tailwindcss"
  9. ],
  10. "tailwindFunctions": [
  11. "clsx",
  12. "cn",
  13. "cva"
  14. ],
  15. "tailwindStylesheet": "resources/css/app.css",
  16. "tabWidth": 4,
  17. "overrides": [
  18. {
  19. "files": "**/*.yml",
  20. "options": {
  21. "tabWidth": 2
  22. }
  23. }
  24. ]
  25. }