summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-04-18 12:41:08 -0700
committerisaacs <i@izs.me>2012-04-18 12:44:28 -0700
commit605927fbd9c2fbcd7d88a8f8159a9ca78417a6d0 (patch)
treeb467d8afbd0e83594b87bdea08812979241523b3 /Makefile
parent3d69bbfa87551191171e61be858b2bf20658d73e (diff)
downloadandroid-node-v8-605927fbd9c2fbcd7d88a8f8159a9ca78417a6d0.tar.gz
android-node-v8-605927fbd9c2fbcd7d88a8f8159a9ca78417a6d0.tar.bz2
android-node-v8-605927fbd9c2fbcd7d88a8f8159a9ca78417a6d0.zip
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 c6e2e09a24..959896a795 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)