我上周启动了一个项目。一切正常。
这周我回来了,现在eslint给我错误:未找到ESLint配置错误。
我在项目的根目录中有eslintrc.js。
这是我的NUXT CONFIG文件的相关部分。
extend(config, ctx) {
// Run ESLint on save
if (ctx.isDev && ctx.isClient) {
config.module.rules.push({
enforce: 'pre',
test: /\.(js|vue)$/,
loader: 'eslint-loader',
exclude: /(node_modules)/
})
}
},
有什么想法吗?
答案 0 :(得分:0)
请添加这些行
extend(config, ctx) {
if (ctx.dev && ctx.isClient) {
config.module.rules.push({
enforce: 'pre',
test: /\.(js|vue)$/,
loader: 'eslint-loader',
exclude: /(node_modules)/,
**options: {
fix: true
}**
})
}
}