Increase max number of JSLint errors. This is necessary because we have several error messages that we choose to ignore.
This commit is contained in:
parent
13f27fcd05
commit
a2e1051fb4
|
@ -2,7 +2,7 @@ load("build/jslint.js");
|
||||||
|
|
||||||
var src = readFile("dist/jquery.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'
|
// All of the following are known issues that we think are 'ok'
|
||||||
// (in contradiction with JSLint) more information here:
|
// (in contradiction with JSLint) more information here:
|
||||||
|
|
Loading…
Reference in a new issue