{ "asi" : false, // if automatic semicolon insertion should be tolerated "bitwise" : false, // if bitwise operators should not be allowed "boss" : false, // if advanced usage of assignments should be allowed "eqnull" : false, // if == null comparisons should be tolerated "evil" : false, // if eval should be allowed "esnext" : false, "expr" : false, // if ExpressionStatement should be allowed as Programs "funcscope" : false, // if olny function scope should be used for scope tests "globalstrict": false, // if global "use strict"; should be allowed (also // enables 'strict') "iterator" : false, // if the `__iterator__` property should be allowed "lastsemic" : false, // if semicolons may be ommitted for the trailing // statements inside of a one-line blocks. "latedef" : false, // if the use before definition should not be tolerated "laxbreak" : false, // if line breaks should not be checked "laxcomma" : false, // if line breaks should not be checked around commas "loopfunc" : false, // if functions should be allowed to be defined within // loops "multistr" : false, // allow multiline strings "onevar" : false, // if only one var statement per function should be // allowed "onecase" : false, // if one case switch statements should be allowed "plusplus" : false, // if increment/decrement should not be allowed "proto" : false, // if the `__proto__` property should be allowed "regexdash" : false, // if unescaped first/last dash (-) inside brackets // should be tolerate "shadow" : false, // if variable shadowing should be tolerated "smarttabs" : false, // if smarttabs should be tolerated // (http://www.emacswiki.org/emacs/SmartTabs) "sub" : false, // if all forms of subscript notation are tolerated "supernew" : false, // if `new function () { ... };` and `new Object;` // should be tolerated "validthis" : false, // if 'this' inside a non-constructor function is valid. // This is a function scoped option only. "withstmt" : false, // if with statements should be allowed "white" : false, // if strict whitespace rules apply // Environments "debug" : false, // if debugger statements should be allowed "devel" : false, // if logging globals should be predefined (console, alert, etc.) "rhino" : false, // if the Rhino environment globals should be predefined "couch" : false, // if CouchDB globals should be predefined "dojo" : false, // if Dojo Toolkit globals should be predefined "esnext" : false, // if es.next specific syntax should be allowed "node" : false, // if the Node.js environment globals should be predefined "mootools" : false, // if MooTools globals should be predefined "nonstandard" : false, // if non-standard (but widely adopted) globals should be predefined "prototypejs" : false, // if Prototype and Scriptaculous globals should be predefined "whs" : false, "indent" : 2, "predef" : ["Drupal"], "passfail" : false, "maxerr" : 1000, "maxlen" : 80 }