.prettierrc.cjs 198 B

1234567891011
  1. // @see https://prettier.io/docs/en/options
  2. module.exports = {
  3. singleQuote: true,
  4. printWidth: 100,
  5. tabWidth: 2,
  6. useTabs: false,
  7. semi: false,
  8. trailingComma: 'all',
  9. endOfLine: 'auto',
  10. }