Eslint和Vue/Comment指令存在问题
P粉312195700
P粉312195700 2024-03-26 09:36:09
0
1
454

您好,我刚刚运行我的网站,遇到了 20 个这样的错误:

Module Error (from ./node_modules/eslint-loader/dist/cjs.js): 
error  clear  vue/comment-directive

知道这里出了什么问题吗?

P粉312195700
P粉312195700

全部回复(1)
P粉419164700

所有 eslint 插件中都包含允许 eslint 在“模板”中使用 eslint-disable 功能的规则。它支持使用以下注释:

  • eslint 禁用
  • 启用 eslint
  • eslint 禁用行
  • eslint-disable-next-line

如果您可以通过在 .eslintrc.js 中添加自定义规则来关闭默认规则的 vue/comment-directive,则可以解决您遇到的错误 > 文件


rules: {
    'nuxt/no-cjs-in-config': 'off',
    'vue/comment-directive': 'off'
  }
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板