.prettierrc.js 296 B

1234567891011121314
  1. module.exports = {
  2. printWidth: 100,
  3. tabWidth: 2,
  4. useTabs: false,
  5. semi: true,
  6. singleQuote: true,
  7. vueIndentScriptAndStyle: true,
  8. trailingComma: 'none',
  9. bracketSpacing: true,
  10. proseWrap: 'never',
  11. htmlWhitespaceSensitivity: 'strict',
  12. endOfLine: 'auto',
  13. arrowParens: 'avoid'
  14. };