.prettierrc.js 1.0 KB

1234567891011121314151617181920
  1. module.exports = {
  2. printWidth: 80, //单行长度
  3. tabWidth: 2, //缩进长度
  4. useTabs: false, //使用空格代替tab缩进
  5. semi: true, //句末使用分号
  6. singleQuote: true, //使用单引号
  7. quoteProps: 'as-needed', //仅在必需时为对象的key添加引号
  8. jsxSingleQuote: true, // jsx中使用单引号
  9. trailingComma: 'all', //多行时尽可能打印尾随逗号
  10. bracketSpacing: true, //在对象前后添加空格-eg: { foo: bar }
  11. jsxBracketSameLine: true, //多属性html标签的‘>’折行放置
  12. arrowParens: 'always', //单参数箭头函数参数周围使用圆括号-eg: (x) => x
  13. requirePragma: false, //无需顶部注释即可格式化
  14. insertPragma: false, //在已被preitter格式化的文件顶部加上标注
  15. proseWrap: 'preserve', //不知道怎么翻译
  16. htmlWhitespaceSensitivity: 'ignore', //对HTML全局空白不敏感
  17. vueIndentScriptAndStyle: false, //不对vue中的script及style标签缩进
  18. endOfLine: 'lf', //结束行形式
  19. embeddedLanguageFormatting: 'auto', //对引用代码进行格式化
  20. };