.prettierrc 296 B

12345678910111213141516
  1. {
  2. "useTabs": true,
  3. "singleQuote": true,
  4. "trailingComma": "none",
  5. "printWidth": 100,
  6. "plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
  7. "overrides": [
  8. {
  9. "files": "*.svelte",
  10. "options": {
  11. "parser": "svelte"
  12. }
  13. }
  14. ],
  15. "tailwindStylesheet": "./src/app.css"
  16. }