1
0

More than 1 year has passed since last update.

eslint-plugin-reactで未使用メソッドを検知:no-unused-class-component-methods

Last updated at Posted at 2022-02-15

eslint-plugin-reactに正式に未使用メソッド検知が正式にサポートされるようになった。

.eslintrc.json
"react/no-unused-class-component-methods": "warn",

検知できる内容

  • 未使用のインスタンスメソッド:this.hoge()
  • 未使用のインスタンス変数:this.varHoge
1
0
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
0