mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
doc: recommend test-doc instead of lint-md
The documentation style guide used to recommend checking changes in the docs by running `make lint-md`. This leaves out some important checks which are contained in the `test-doc` build target. This commit also replaces `lint` by `lint-md` in the list of `test-doc`'s prerequisites. PR-URL: https://github.com/nodejs/node/pull/35708 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
This commit is contained in:
2
Makefile
2
Makefile
@@ -580,7 +580,7 @@ test-hash-seed: all
|
||||
$(NODE) test/pummel/test-hash-seed.js
|
||||
|
||||
.PHONY: test-doc
|
||||
test-doc: doc-only lint ## Builds, lints, and verifies the docs.
|
||||
test-doc: doc-only lint-md ## Builds, lints, and verifies the docs.
|
||||
@if [ "$(shell $(node_use_openssl))" != "true" ]; then \
|
||||
echo "Skipping test-doc (no crypto)"; \
|
||||
else \
|
||||
|
||||
@@ -16,7 +16,7 @@ this guide.
|
||||
* Documents should be word-wrapped at 80 characters.
|
||||
* `.editorconfig` describes the preferred formatting.
|
||||
* A [plugin][] is available for some editors to apply these rules.
|
||||
* Check changes to documentation with `make lint-md`.
|
||||
* Check changes to documentation with `make test-doc -j` or `vcbuild test-doc`.
|
||||
* [Use US spelling][].
|
||||
* [Use serial commas][].
|
||||
* Avoid first-person pronouns (_I_, _we_).
|
||||
|
||||
Reference in New Issue
Block a user