diff options
author | Diosney Sarmiento <diosney.s@gmail.com> | 2016-07-04 12:42:20 -0400 |
---|---|---|
committer | Anna Henningsen <anna@addaleax.net> | 2016-07-10 22:16:37 +0200 |
commit | fa46e503b54c6d62b76515f0dc4bc58ff6734c4a (patch) | |
tree | 0c012b392c26eb452fe81cac7de1f45c652b964a /CONTRIBUTING.md | |
parent | 5a641e2b6d137dfef21ae09bc5adde3ec742c15c (diff) | |
download | node-new-fa46e503b54c6d62b76515f0dc4bc58ff6734c4a.tar.gz |
doc: added information on how to run the linter.
Added clarification about the linter execution.
PR-URL: https://github.com/nodejs/node/pull/7534
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 57a30b1221..50db95b3de 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -150,6 +150,9 @@ $ ./configure && make -j8 test Make sure the linter is happy and that all tests pass. Please, do not submit patches that fail either check. +Running `make 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`. + 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: |