-
Notifications
You must be signed in to change notification settings - Fork 47k
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
remove eslint-disable when possible and update babel-eslint version #5352
Conversation
33533a5
to
131ce6d
Compare
131ce6d
to
b81328f
Compare
@chicoxyzzy updated the pull request. |
/*eslint-disable camelcase */ | ||
compare_size: require('./grunt/config/compare_size'), | ||
/*eslint-enable camelcase */ | ||
'compare-size': require('./grunt/config/compare-size'), |
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.
I don't think you can do this since the actual task is compare_size
and the way grunt works is that it matches the config name up with the task of the same name. Does the task still work for you?
Since you're dealing with lint stuff… want to update to eslint 1.8 as well and make sure we don't have other changes needed? Thanks! |
b81328f
to
4a7456a
Compare
ok I'll do it |
@chicoxyzzy updated the pull request. |
Lint passes for 1.8. I've updated eslint-plugin-react also |
@chicoxyzzy updated the pull request. |
Thanks! |
remove eslint-disable when possible and update babel-eslint version
also compare_size was only file using snake_case so I renamed it