您好,我刚刚运行我的网站,遇到了 20 个这样的错误:
Module Error (from ./node_modules/eslint-loader/dist/cjs.js): error clear vue/comment-directive
知道这里出了什么问题吗?
所有 eslint 插件中都包含允许 eslint 在“模板”中使用 eslint-disable 功能的规则。它支持使用以下注释:
如果您可以通过在 .eslintrc.js 中添加自定义规则来关闭默认规则的 vue/comment-directive,则可以解决您遇到的错误 > 文件
rules: { 'nuxt/no-cjs-in-config': 'off', 'vue/comment-directive': 'off' }
所有 eslint 插件中都包含允许 eslint 在“模板”中使用 eslint-disable 功能的规则。它支持使用以下注释:
如果您可以通过在 .eslintrc.js 中添加自定义规则来关闭默认规则的 vue/comment-directive,则可以解决您遇到的错误 > 文件