Today I learned how to fix no-unused-vars with typescript
I don't know why, but in my current project with TypeScript, there were two rules for unused vars. "no-unused-vars": [ "error", { "vars": "all", "args": "after-used", "ignoreRestSiblings": false } ], ...
Jun 1, 20211 min read