π§ΉDetecting unused classes
There is an ESLint plugin that detects unused classes:
Usage
Add the dependency:
Enable it in you ESLint config
Case 1: You are in a create-react-app project:
Edit your package.json:
Case 2: You have installed ESLint manually:
Edit your .eslintrc.js file:
Disabling warnings
In case of false positive, disabling the warning:
For a line:
// eslint-disable-next-line tss-unused-classes/unused-classesFor the entire file:
// eslint-disable-next-line tss-unused-classes/unused-classes
Last updated
Was this helpful?