-
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
test: fix lint error regarding unused commons const #9334
test: fix lint error regarding unused commons const #9334
Conversation
Currently, make lint is failing with the following error: 3:7 error 'common' is assigned a value but never used no-unused-vars ✖ 1 problem (1 error, 0 warnings)
I don't think this needs to wait the full 48 hours. Linter passed, so it looks like CI was successful. |
I agree. |
Sorry about this. Just to understand, isn't the linter run within the CI test? |
@mcollina yes. I think linter failed here https://ci.nodejs.org/job/node-test-commit/5798/ |
I'll merge this. Thanks for the reviews! |
Currently, make lint is failing with the following error: 3:7 error 'common' is assigned a value but never used no-unused-vars ✖ 1 problem (1 error, 0 warnings) PR-URL: nodejs#9334 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Landed in 690bded |
@mcollina I try to always run |
Currently, make lint is failing with the following error: 3:7 error 'common' is assigned a value but never used no-unused-vars ✖ 1 problem (1 error, 0 warnings) PR-URL: #9334 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Does anyone know which commit broke the linter? |
@thealphanerd AFAIK the linter worked fine, it was just overlooked, see #9334 (comment). |
Checklist
make -j8 test
(UNIX), orvcbuild test nosign
(Windows) passesAffected core subsystem(s)
test
Description of change
Currently, make lint is failing with the following error: