-
Notifications
You must be signed in to change notification settings - Fork 121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't require an exemption for an exemption #958
Comments
Btw. I'm also interested if it's not a good idea; maybe it's possible to replace all |
My personal preference is to avoid whenever possible the use of |
tl;dr This is fine with me, and found an alternative, closing this issue. =========== Background: There are hundreds of open issues in the TS repo for things that could be typed or even inferred, but not yet supported, so just because TS doesn't cover something doesn't mean it's wrongly typed or used. I'd feel uncomfortable about switching to a 5x slower code version just because sometimes they're easier for TS (see thread in the typescript channel) and need no The current case: symbols, which are otherwise as standard keys for objects as strings are, are not fully handled by TS (
I ended up not needing the |
Hmm not sure I can handle all cases; eg. with symbols, I'd need to lie to TS eg. |
Yeah, I think trying to make it work in typescript is the best case and |
Currently, one can't just write
it has to be the super noisy
Let's deactivate it by deactivating the
ban-ts-comment
, unless we have a reason not to. One can already grep for@ts-ignore
instancesThe text was updated successfully, but these errors were encountered: