module.exports = { bracketSpacing: true, jsxBracketSameLine: true, // 末尾逗号 trailingComma: 'none', arrowParens: 'avoid', // 字符串使用单引号 singleQuote: true, // 每行末尾自动添加分号 semi: true, // 换行长度 // printWidth: 200 };