-
Notifications
You must be signed in to change notification settings - Fork 47.3k
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
Fix new lint errors #2677
Fix new lint errors #2677
Conversation
for (key in parentKeys) { | ||
var key = parentKeys[key]; | ||
for (var k in parentKeys) { | ||
var key = parentKeys[k]; |
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.
Maybe rename this to not key
since it's actually the value?
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.
Wait jk it's not.
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.
This should be a numerical for loop?
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.
... yep. I should have at least caught that in review, but definitely here. oops.
@spicyj's comment |
We'll get to lint parity soon and then not need to do this.
We'll get to lint parity soon and then not need to do this.