Hacker News new | ask | show | jobs
by maga 1891 days ago
tsconfig's noUnusedLocals can help you with the last one.
1 comments

And it allows you to opt out when needed by starting the variable with an underscore, which is much nicer than eslint-disable-next-line...
Ah nice, I didn't know that. Thanks.