.prettierrc.cjs 383 B

1234567891011121314151617181920
  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. htmlWhitespaceSensitivity: 'ignore',
  11. vueIndentScriptAndStyle: true,
  12. overrides: [
  13. {
  14. files: '*.json',
  15. options: {
  16. trailingComma: 'none',
  17. },
  18. },
  19. ],
  20. }