summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2017-02-03 11:18:45 -0800
committerRich Trott <rtrott@gmail.com>2017-02-06 15:35:04 -0800
commitdccd97dd57ea0c930d6088d86a3155ca81046c0b (patch)
treec07bd7c869364036e0092a6f2e931850bc82284a /CONTRIBUTING.md
parent7dd82dd1c36e7e38a05ae9709956ae257cf75282 (diff)
downloadandroid-node-v8-dccd97dd57ea0c930d6088d86a3155ca81046c0b.tar.gz
android-node-v8-dccd97dd57ea0c930d6088d86a3155ca81046c0b.tar.bz2
android-node-v8-dccd97dd57ea0c930d6088d86a3155ca81046c0b.zip
doc: fix linting command for vcbuild
Currently, `vcbuild` only supports `jslint`. `vcbuild lint` will not work because there is no `lint` task specified in `vcbuild.bat`. Update documentation to use `vcbuild jslint` instead. PR-URL: https://github.com/nodejs/node/pull/11151 Reviewed-By: Nikolai Vavilov <vvnicholas@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index ab3a886302..6965f78b4d 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -182,7 +182,9 @@ Running `make test`/`vcbuild test` will run the linter as well unless one or
more tests fail.
If you want to run the linter without running tests, use
-`make lint`/`vcbuild lint`.
+`make lint`/`vcbuild jslint`. At this time, only JavaScript linting is
+available on Windows. `make lint` on POSIX will run both JavaScript linting and
+C++ linting.
If you are updating tests and just want to run a single test to check it, you
can use this syntax to run it exactly as the test harness would: