From a2e1051fb4b2065fb5ebea49dc0bcc583d113187 Mon Sep 17 00:00:00 2001 From: Brandon Aaron Date: Wed, 1 Sep 2010 10:48:19 -0500 Subject: [PATCH] Increase max number of JSLint errors. This is necessary because we have several error messages that we choose to ignore. --- build/jslint-check.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/jslint-check.js b/build/jslint-check.js index 3e9c126..e76abc0 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: -- 1.7.10.4