suerprisePlus
2024-11-27 ab8f3297f7c8243d486c9da0900e4f813b2ea2df
1
2
3
4
5
6
7
8
9
10
module.exports = {
  printWidth: 220,
  singleQuote: true, // 使用单引号而不是双引号
  semi: true, // 句尾是否加;
  proseWrap: 'preserve',
  tabWidth: 4,
  trailingComma: 'es5', // 在对象或数组最后一个元素后面是否加逗号(在ES5中加尾逗号)
  bracketSpacing: true, // 在对象,数组括号与文字之间加空格 "{ foo: bar }"
  htmlWhitespaceSensitivity: 'ignore', // > 不乱换行
};