Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-04-18 23:41:08 +0400
committerisaacs <i@izs.me>2012-04-18 23:44:28 +0400
commit605927fbd9c2fbcd7d88a8f8159a9ca78417a6d0 (patch)
treeb467d8afbd0e83594b87bdea08812979241523b3 /Makefile
parent3d69bbfa87551191171e61be858b2bf20658d73e (diff)
Fix test/ jslint failures (by not linting tests)
In practice, it's not important to lint tests. We lint src/ and lib/, which is where we're more prone to make mistakes that affect real-world situations in subtle ways, and where more changes are made that ought to be kept in a consistent style. Tests are a mess anyways, and no one cares.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c6e2e09a24f..959896a7953 100644
--- a/Makefile
+++ b/Makefile
@@ -229,7 +229,7 @@ bench-idle:
./node benchmark/idle_clients.js &
jslint:
- PYTHONPATH=tools/closure_linter/ $(PYTHON) tools/closure_linter/closure_linter/gjslint.py --unix_mode --strict --nojsdoc -r lib/ -r src/ -r test/ --exclude_files lib/punycode.js
+ PYTHONPATH=tools/closure_linter/ $(PYTHON) tools/closure_linter/closure_linter/gjslint.py --unix_mode --strict --nojsdoc -r lib/ -r src/ --exclude_files lib/punycode.js
cpplint:
@$(PYTHON) tools/cpplint.py $(wildcard src/*.cc src/*.h src/*.c)