From: Brandon Aaron Date: Wed, 1 Sep 2010 15:48:19 +0000 (-0500) Subject: Increase max number of JSLint errors. This is necessary because we have several error... X-Git-Url: http://git.asbjorn.biz/?p=jquery.git;a=commitdiff_plain;h=a2e1051fb4b2065fb5ebea49dc0bcc583d113187 Increase max number of JSLint errors. This is necessary because we have several error messages that we choose to ignore. --- 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: