module.exports = { printWidth: 120, //单行长度 tabWidth: 4, //缩进长度 useTabs: false, //使用空格代替tab缩进 semi: true, //句末使用分号 singleQuote: true, //使用单引号 endOfLine: 'auto', // indent: 4, //缩进长度 trailingComma: 'none' // 对象最后一个属性末尾是否要逗号 };