.prettierrc.js 439 Bytes
module.exports = {
  // Tab空格数
  tabWidth: 2,
  // 使用Tab缩进
  useTabs: false,
  // 换行字符数
  printWidth: 190,
  // 开启 eslint 支持
  eslintIntegration: true,
  // 字符串单引号
  singleQuote: true,
  // 行尾分号
  semi: true,
  // 尾逗号 none es5 all
  trailingComma: 'all',
  // 大括号空格
  bracketSpacing: true,
  // 箭头函数参数只有一个时省略小括号
  arrowParens: 'avoid',
};