module.exports = { semi: false, // 未尾分号 singleQuote: true, // 单引号 quoteProps: 'as-needed', trailingComma: 'none', // 末尾逗号 // 重点是这一个要配置为auto endOfLine: 'auto', printWidth: 260 }