module.exports = { tabWidth: 2, //指定每个缩进级别的空格数 printWidth: 140, //超过多少换行 semi: false, //行位是否使用分号 vueIndentScriptAndStyle: true, // vue文件的script标签和Style标签下的内容需要缩进 singleQuote: true, // 强制使用单引号 trailingComma: 'all', // 强制最后一行也要有斗号 proseWrap: 'never', htmlWhitespaceSensitivity: 'strict', endOfLine: 'auto', }