LoginSignup
1
1

More than 3 years have passed since last update.

【ESLint】error clear vue/comment-directiveって怒られる(その場凌ぎ)

Last updated at Posted at 2020-12-11

ご無沙汰してます、おおのんです。
ワケあってnuxtのnode-module入れなおしたら、ESLintで怒られてビルドできない。
[Vue] ESLintを更新すると謎のエラー clear が表示される件
こちらの記事で少し解説されています。プラグイン制作者本人様も登場されています。

これが複数表示される
error  clear  vue/comment-directive

参考:ESLint Vue plugin showing false positives for vue/comment-directive

ルートディレクトリ配下の.eslintrc.js
module.exports = {
  ...省略...
  // add your custom rules here
  rules: {
    'vue/comment-directive': 0
  }
}

これで解決します。
その場凌ぎです。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1