diff options
author | Brandon Aaron <brandon.aaron@gmail.com> | 2010-09-01 10:48:19 -0500 |
---|---|---|
committer | Brandon Aaron <brandon.aaron@gmail.com> | 2010-09-01 10:48:19 -0500 |
commit | a2e1051fb4b2065fb5ebea49dc0bcc583d113187 (patch) | |
tree | c6225848745553ecf90dda48958dce7032208447 /build/jslint-check.js | |
parent | 13f27fcd05987dc8951621ea55795fde792d7b79 (diff) | |
download | jquery-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.js | 2 |
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: |