-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
upgrade eslint version and fix all current warnings/errors #2194
Conversation
Whew. Nice one! |
upgrade eslint version and fix all current warnings/errors
This took nearly 4 hours. It was so tedious! |
For the most part I find stuff like this is largely unnecessary. Does it stop bad releases? Not really. Does it add noise & stumbling blocks to PRs? Yeah. |
I agree, but now that it's done — don't you think it's a net positive to have? |
Naw, the PR hurdles alone make it a negative for me. I see this as a crutch to brace maintainer activity. |
Maybe it doesn't directly stop bad releases but I disagree that's it's unnecessary. Consistency of style and use of tools to prevent trivial bugs is one of the first things I use to gauge the health of a project and, consequently, my willingness and desire to contribute to it. That said, I don't care if we run it on pulls or block them because it fails, if that's what you mean. Accepting good pulls with different style and not cleaning up afterwards are two different things. |
Agh, it's always my code that has sneaky 4 spaces. 😦 Why do we align colons, but not equals? - nativeBind = FuncProto.bind,
- nativeCreate = Object.create;
+ nativeIsArray = Array.isArray,
+ nativeKeys = Object.keys,
- value: value,
- index: index,
+ value : value,
+ index : index,
criteria: iteratee(value, index, list) |
@jridgewell There were many more |
@jashkenas done: #2196 |
change key-spacing linting rule to not require colon alignment
No description provided.