diff options
author | isaacs <i@izs.me> | 2012-04-18 12:41:08 -0700 |
---|---|---|
committer | isaacs <i@izs.me> | 2012-04-18 12:44:28 -0700 |
commit | 605927fbd9c2fbcd7d88a8f8159a9ca78417a6d0 (patch) | |
tree | b467d8afbd0e83594b87bdea08812979241523b3 /Makefile | |
parent | 3d69bbfa87551191171e61be858b2bf20658d73e (diff) | |
download | node-new-605927fbd9c2fbcd7d88a8f8159a9ca78417a6d0.tar.gz |
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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |