.prettierrc.js 363 B

12345678910111213141516171819
  1. module.exports = {
  2. printWidth: 100,
  3. semi: true,
  4. vueIndentScriptAndStyle: true,
  5. singleQuote: true,
  6. trailingComma: 'all',
  7. proseWrap: 'never',
  8. htmlWhitespaceSensitivity: 'strict',
  9. endOfLine: 'auto',
  10. plugins: ['prettier-plugin-packagejson'],
  11. overrides: [
  12. {
  13. files: '.*rc',
  14. options: {
  15. parser: 'json',
  16. },
  17. },
  18. ],
  19. };