12
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

エラー React version not specified in eslint-plugin-react settings. を解決する

Posted at

##eslint-plugin-reactを利用しeslintをかけたところエラー
####React version not specified in eslint-plugin-react settings.
が出たのでググりました。

###まず翻訳
####eslint-plugin-react の設定で React のバージョンが指定されていません。

利用しているバージョンは以下です

"react": "16.13.1"
"eslint": "7.1.0"
"eslint-plugin-react": "7.20.0"

さらにググり
2記事参照
https://blog.freks.jp/remove-eslint-react-plugin-warning/
https://github.com/yannickcr/eslint-plugin-react/issues/1955

####.eslintrc.jsonのsettingsに追記修正

.eslintrc.json
"settings": {
        "react": {
          "version": "detect"
        }

解決しました

12
4
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
12
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?