prettier.config.js 446 B

1234567891011121314151617181920
  1. /**
  2. * @author https://vue-admin-beautiful.com (不想保留author可删除)
  3. * @description 代码规范
  4. */
  5. module.exports = {
  6. printWidth: 80,
  7. tabWidth: 2,
  8. useTabs: false,
  9. semi: false,
  10. singleQuote: true,
  11. quoteProps: 'as-needed',
  12. jsxSingleQuote: false,
  13. trailingComma: 'es5',
  14. bracketSpacing: true,
  15. arrowParens: 'always',
  16. htmlWhitespaceSensitivity: 'ignore',
  17. vueIndentScriptAndStyle: true,
  18. // endOfLine: 'auto',
  19. }