-
-
Notifications
You must be signed in to change notification settings - Fork 495
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
feat(linter): implement no-undef
#672
Conversation
no-undef
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work! I think we can make this performant by using run_once
, and then loop the global unreferenced variables and print their references. Would you like to give this a try?
This looks great to me, ready for review @mysteryven? |
Fixed to use |
I think it is ready for review again, so I'll remove the draft status. |
Nice work! I hope you enjoyed the long journey 😁 |
Closes #619
I have tried to implement https://eslint.org/docs/latest/rules/no-undef
Note: Unsupported items are excluded from test cases in this PR by commenting them out..