14
7

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.

【ESlint】JavaScriptとTypeScriptが混同しているプロジェクトの.tsxファイルで、ESlintルールの "react/prop-types" を無効にする方法

Last updated at Posted at 2019-07-31

JavaScriptとTypeScriptが混ざっているプロジェクトなどで、JavaScriptファイル(.js)では eslint"react/prop-types" を有効にしたいけど、TypeScriptファイル(.tsx)では無効にしたい場合がある。

方法

eslint の設定が記述してある eslintrc.js などで tsx ファイルの時は "react/prop-types" を無効にしてあげるように設定する。

eslint.js
{
    "plugins": ["a-plugin"],
    "overrides": [
        {
            "files": ["**/*.tsx"],
            "rules": {
                "react/prop-types": "off"
            }
        }
    ]
}

overrides でルールを上書きでき、 files でグロブパターンでファイルを指定することができる。
これで tsx ファイルでは "react/prop-types" の警告がされないようになる。

参考

14
7
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
14
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?