prettier.config.js 541 B

12345678910111213141516171819202122232425262728
  1. module.exports = {
  2. printWidth: 100,
  3. tabWidth: 2,
  4. useTabs: false,
  5. semi: true,
  6. vueIndentScriptAndStyle: true,
  7. singleQuote: true,
  8. quoteProps: 'as-needed',
  9. bracketSpacing: true,
  10. trailingComma: 'es5',
  11. jsxBracketSameLine: false,
  12. jsxSingleQuote: false,
  13. arrowParens: 'always',
  14. insertPragma: false,
  15. requirePragma: false,
  16. proseWrap: 'never',
  17. htmlWhitespaceSensitivity: 'strict',
  18. endOfLine: 'lf',
  19. rangeStart: 0,
  20. overrides: [
  21. {
  22. files: '*.md',
  23. options: {
  24. tabWidth: 2,
  25. },
  26. },
  27. ],
  28. };