{ // enforcing "freeze": true, "latedef": "nofunc", "noarg": true, "nonbsp": true, "nonew": true, "undef": true, "unused": true, "strict": true, // relaxing "curly": false, // allow single-line if statements like `if (err) return done(err);` "eqnull": true, // allow `x == null` as a shortcut for `(x === null || x === void 0)` "expr": true, // allow things like `x || (x = 8)` "funcscope": true, "laxbreak": true, // allow multi-line ternary operator. "predef": ["angular"] }