You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 19, 2019. It is now read-only.
What version of typescript-eslint-parser are you using?
11.0.0
What code were you trying to parse?
interfaceFoo{bar: string}constbar='blah'
What did you expect to happen?
The code to be considered valid from the perspective of no-use-before-define, or the README to call out that this is an unsupported case.
What happened?
The key bar in the interface on line 2 was flagged as being used before defined. If I removed the later const bar... assignment, the lint error went away.