.prettierrc.js 676 B

1234567891011121314
  1. module.exports = {
  2. tabWidth: 4, // 缩进长度
  3. useTabs: false, // 使用tab缩进
  4. semi: false, // 句末不使用分号
  5. singleQuote: true, // 使用单引号
  6. bracketSpacing: true, // 在对象前后添加空格-eg: { foo: bar }
  7. arrowParens: 'always', // 单参数箭头函数参数周围使用圆括号-eg: (x) => x
  8. requirePragma: false, // 无需顶部注释即可格式化
  9. insertPragma: false, // 已格式化注解
  10. proseWrap: 'preserve', // 换行符敏感的服务器进行原样包装
  11. htmlWhitespaceSensitivity: 'ignore', // 对HTML全局空白不敏感
  12. embeddedLanguageFormatting: 'auto', // 对引用代码进行格式化
  13. }