prettier.config.js 233 B

123456789
  1. module.exports = {
  2. semi: false, // 未尾分号
  3. singleQuote: true, // 单引号
  4. quoteProps: 'as-needed',
  5. trailingComma: 'none', // 末尾逗号
  6. // 重点是这一个要配置为auto
  7. endOfLine: 'auto',
  8. printWidth: 260
  9. }