We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When testing out the lint rule during an 8.x backport it came to my attention that the lint rule does not appear to work.
I attempted to manually de-alphabatize and then run the linter... it did not flag on anything
Refs: https://github.com/nodejs/node/blob/master/tools/eslint-rules/alphabetize-errors.js
/cc @Trott @maclover7
The text was updated successfully, but these errors were encountered:
After some testing, it seems like the /* eslint-enable alphabetize-errors */ comment isn't working properly.
/* eslint-enable alphabetize-errors */
If you manually specify the alphabetize-errors rule like so...
./node tools/eslint/bin/eslint.js --rule 'alphabetize-errors: error' --rulesdir=tools/eslint-rules lib/internal/errors.js
... then everything works fine.
If you attempt a normal run via...
./node tools/eslint/bin/eslint.js --rulesdir=tools/eslint-rules lib/internal/errors.js
... then things break.
Will play around with this a little more.
Sorry, something went wrong.
No branches or pull requests
When testing out the lint rule during an 8.x backport it came to my attention that the lint rule does not appear to work.
I attempted to manually de-alphabatize and then run the linter... it did not flag on anything
Refs: https://github.com/nodejs/node/blob/master/tools/eslint-rules/alphabetize-errors.js
/cc @Trott @maclover7
The text was updated successfully, but these errors were encountered: