.prettierrc.js 296 B

1234567
  1. module.exports = {
  2. singleQuote: true, //字符串是否使用单引号,默认为false,使用双引号
  3. semi: false, //行位是否使用分号,默认为true
  4. trailingComma: 'all', //是否使用尾逗号,有三个可选值"<none|es5|all>"
  5. printWidth: 120,
  6. arrowParens: 'avoid',
  7. }