prettier.config.js 235 B

123456
  1. module.exports = {
  2. singleQuote: true, // 单引号
  3. trailingComma: 'es5', // 对象末尾以逗号结束
  4. arrowParens: 'avoid', // 箭头函数只有一个参数的时候,不使用()
  5. endOfLine: 'auto', // CRLF,LF都可以
  6. };