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