prettier.config.js 384 B

1234567891011121314151617
  1. module.exports = {
  2. printWidth: 120,
  3. tabWidth: 2,
  4. useTabs: false,
  5. semi: true,
  6. singleQuote: true,
  7. quoteProps: 'as-needed',
  8. jsxSingleQuote: false,
  9. trailingComma: 'es5',
  10. bracketSpacing: true,
  11. jsxBracketSameLine: false,
  12. arrowParens: 'always',
  13. htmlWhitespaceSensitivity: 'ignore',
  14. vueIndentScriptAndStyle: true,
  15. endOfLine: 'auto',
  16. eslintIntegration: false,
  17. };