aboutsummaryrefslogtreecommitdiffstats
path: root/build/jslint-check.js
diff options
context:
space:
mode:
authorBrandon Aaron <brandon.aaron@gmail.com>2010-09-01 10:48:19 -0500
committerBrandon Aaron <brandon.aaron@gmail.com>2010-09-01 10:48:19 -0500
commita2e1051fb4b2065fb5ebea49dc0bcc583d113187 (patch)
treec6225848745553ecf90dda48958dce7032208447 /build/jslint-check.js
parent13f27fcd05987dc8951621ea55795fde792d7b79 (diff)
downloadjquery-a2e1051fb4b2065fb5ebea49dc0bcc583d113187.tar.gz
jquery-a2e1051fb4b2065fb5ebea49dc0bcc583d113187.zip
Increase max number of JSLint errors. This is necessary because we have several error messages that we choose to ignore.
Diffstat (limited to 'build/jslint-check.js')
-rw-r--r--build/jslint-check.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/jslint-check.js b/build/jslint-check.js
index 3e9c12639..e76abc0a7 100644
--- a/build/jslint-check.js
+++ b/build/jslint-check.js
@@ -2,7 +2,7 @@ load("build/jslint.js");
var src = readFile("dist/jquery.js");
-JSLINT(src, { evil: true, forin: true });
+JSLINT(src, { evil: true, forin: true, maxerr: 100 });
// All of the following are known issues that we think are 'ok'
// (in contradiction with JSLint) more information here: