-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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: lint all docs under doc #28128
Conversation
Sadly, an error occurred when I tried to trigger a build. :( |
This picks up the file being fixed by #28127: Running Markdown linter on docs...
doc/guides/contributing/pull-requests.md
87:1-88:19 warning Use "GitHub" instead of "Github" prohibited-strings remark-lint
⚠ 1 warning |
This comment has been minimized.
This comment has been minimized.
`**` expansion doesn't behave as expected and as a result files in nested subdirectories under `doc` were not linted. Use `find` instead to generate the list of files to lint.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
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.
Why not use the built in wildcard
as suggested in #28108?
Landed in d74dc17 |
`**` expansion doesn't behave as expected and as a result files in nested subdirectories under `doc` were not linted. Use `find` instead to generate the list of files to lint. PR-URL: nodejs#28128 Refs: nodejs#28127 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
`**` expansion doesn't behave as expected and as a result files in nested subdirectories under `doc` were not linted. Use `find` instead to generate the list of files to lint. PR-URL: #28128 Refs: #28127 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
**
expansion doesn't behave as expected and as a result files innested subdirectories under
doc
were not linted. Usefind
insteadto generate the list of files to lint.
Refs: #28127 (comment)
Blocked until #28127 lands as otherwise the
lint fails on the extra files that are now being picked up.
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes