The arguments to pass to JSLint. You can use any arguments that JSLint supports! Be sure, though, to prefix each argument with -D
Example: -Dadsafe=true, -Dcontinue=true
This would activate adsafe and continue
Example: -Dpredef=foo,bar,baz
This would be like having /*global foo,bar,baz*/ at the top of every JavaScript file JSLint runs on.
Example: -Dpredef=foo,bar,baz, -Dmaxlen=80
This would be like having /*global foo,bar,baz*/ at the top of every JavaScript file JSLint runs on. It also sets the maximum length of a line to 80 chars.
The default options we use are:
var defaultOptions = {
bitwise: true, eqeqeq: false, immed: false,
newcap: false, nomen: false, onevar: false, plusplus: false,
regexp: false, rhino: true, undef: true, white: false,
forin: true, sub: true, browser: true, laxbreak: true,
predef: [
'Ext', 'jQuery', 'window', '$', 'ActiveXObject', 'SWFObject'
]
};