prettier.config.js 215 B

12345678910
  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. };