.prettierrc.mjs 326 B

123456789101112131415
  1. // .prettierrc.mjs
  2. /** @type {import("prettier").Config} */
  3. export default {
  4. plugins: ["prettier-plugin-tailwindcss"],
  5. trailingComma: "es5",
  6. tabWidth: 2,
  7. useTabs: true,
  8. singleQuote: false,
  9. semi: true,
  10. bracketSameLine: false,
  11. bracketSpacing: true,
  12. jsxSingleQuote: false,
  13. quoteProps: "as-needed",
  14. endOfLine: "lf",
  15. };