prettier.config.js 664 B

123456789101112131415161718192021222324252627
  1. /*
  2. * @Author: jixiang
  3. * @Date: 2021-07-07 15:29:18
  4. * @Description:prettier插件的配置项
  5. * @FilePath: /vite-project/prettier.config.js
  6. * One World One Drefeel(56580223@qq.com)
  7. */
  8. module.exports = {
  9. printWidth: 100,
  10. tabWidth: 2,
  11. useTabs: false,
  12. semi: true,
  13. vueIndentScriptAndStyle: true,
  14. singleQuote: true,
  15. quoteProps: 'as-needed',
  16. bracketSpacing: true,
  17. trailingComma: 'es5',
  18. jsxBracketSameLine: false,
  19. jsxSingleQuote: false,
  20. arrowParens: 'always',
  21. insertPragma: false,
  22. requirePragma: false,
  23. proseWrap: 'never',
  24. htmlWhitespaceSensitivity: 'strict',
  25. endOfLine: 'lf',
  26. rangeStart: 0,
  27. };