π§ΉDetecting unused classes
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
yarn add --dev eslint-plugin-tss-unused-classes{
//...
"eslintConfig": {
"plugins": [
//...
"tss-unused-classes"
],
"rules": {
"tss-unused-classes/unused-classes": "warn"
}
},
//...
}module.exports = {
// ...
plugins: [
// ...
'tss-unused-classes'
],
rules: {
// ...
'tss-unused-classes/unused-classes': 'warn'
}
}