module.exports = { // 缩进空格数 tabWidth: 2, // 每行代码最大宽度 printWidth: 80, // 必须分号 semi: true, // 为对象、数组添加有效的结尾逗号 trailingComma: 'es5', // js使用单引号 singleQuote: true, };