.prettierrc.js 169 B

123456789
  1. // @ts-check
  2. /** @type {import("prettier").Config} */
  3. export default {
  4. bracketSpacing: true,
  5. singleQuote: false,
  6. arrowParens: "avoid",
  7. trailingComma: "none"
  8. };