{ "extends": "airbnb/legacy", "env": { "node": true }, "globals": { "define": true, "FEA": true }, "rules": { "max-len": [ "error", { "code": 120, "tabWidth": 4, "ignoreUrls": true } ], "consistent-this": [ "warn", "_this" ], "newline-after-var": 1, "newline-before-return": 1, "curly": [ "error", "all" ], "no-multi-spaces": [ "error", { "exceptions": { "Property": false, "VariableDeclarator": true } } ], "indent": [ "error", 4, { "SwitchCase": 1, "VariableDeclarator": 1 } ], "one-var": [ "error", "always" ], "strict": [ "error", "safe" ], "linebreak-style": [ "error", "unix" ], "operator-linebreak": [ "error", "after" ], "no-new": 1 } }