.prettierrc.js 349 B

12345678910
  1. module.exports = {
  2. printWidth: 120, //单行长度
  3. tabWidth: 4, //缩进长度
  4. useTabs: false, //使用空格代替tab缩进
  5. semi: true, //句末使用分号
  6. singleQuote: true, //使用单引号
  7. endOfLine: 'auto',
  8. // indent: 4, //缩进长度
  9. trailingComma: 'none' // 对象最后一个属性末尾是否要逗号
  10. };