-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
Add lint check for unused imports #1212
Comments
So we can't really check for class SomeClass {
constructor() {
/** @private */
this.someProp_;
}
} I'll have to do a cleanup of that first, but i 100% agree this should be on. |
Yeah, we should really change those by adding I think that check would really give us robustness! |
i stand corrected, the one i stated was for /**
* @typedef {{
* newStackIndex: number
* }}
*/
let ViewerHistoryPoppedEvent; now we need to add either a |
Imports should be used or not done.
CC @erwinmombay
The text was updated successfully, but these errors were encountered: