prettier.config.js 465 B

1234567891011121314
  1. module.exports = {
  2. // 一行的字符数,如果超过会进行换行,默认为80
  3. printWidth: 100,
  4. // 行位是否使用分号,默认为true
  5. semi: false,
  6. vueIndentScriptAndStyle: true,
  7. // 字符串是否使用单引号,默认为false,使用双引号
  8. singleQuote: true,
  9. // 是否使用尾逗号,有三个可选值"<none|es5|all>"
  10. trailingComma: 'all',
  11. proseWrap: 'never',
  12. htmlWhitespaceSensitivity: 'strict',
  13. endOfLine: 'auto',
  14. };