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
}
],
...
roadtofaang.hashnode.dev1 min read