-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
build: do not lint src dir for JS errors #8128
Conversation
There are no JavaScript files in the `src` directory. It can be safely omitted from the JavaScript linting step.
LGTM |
LGTM if ci passes. |
LGTM |
@Trott bro join the game – it says so below! "11 successful checks" |
@jbergstroem I know but I have a few reservations with relying on that:
These concerns may be me inventing things to worry about and in another three days, I'll be all like, "Hey, why are you posting the CI results in a comment? They're right there below. Johan worked hard on that. Don't waste our time with email notifications telling us what's plainly there in the comment. Who does that?!?!" But I'm not there yet. I used "all like" twice in this comment. Deal with it. |
Also, if I observed it correctly, updating PRs – be it by adding another commit or by rebasing it – does clear the status display on Github, too. I think that alone is reason enough to keep posting these comments. |
LGTM |
@Trott: I actually didn't know that the build checks were removed in time. Is that really the case? What I do know is that once we set another pending job with the same identifier the old job success/fail will be removed. Regarding parallel jobs to the same pr: I guess we can add some barrier in the gh bot, but that check probably should live at Jenkins. |
@jbergstroem I guess the bottom line is that how the status gets posted to the PR is currently largely a mystery to me so I'm being cautious. Maybe I should get more involved on that end of things... |
There are no JavaScript files in the `src` directory. It can be safely omitted from the JavaScript linting step. PR-URL: nodejs#8128 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: James M Snell <jasnell@gmail.com>
Landed in dbbbf21 |
There are no JavaScript files in the `src` directory. It can be safely omitted from the JavaScript linting step. PR-URL: #8128 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: James M Snell <jasnell@gmail.com>
labeling don't land, please feel free to batch in with other linting updates if desired |
Checklist
make -j4 test
(UNIX), orvcbuild test nosign
(Windows) passesAffected core subsystem(s)
build
Description of change
There are no JavaScript files in the
src
directory. It can besafely omitted from the JavaScript linting step.