{ "parserOptions": { "ecmaVersion": 6, "sourceType": "module" }, "rules": { "arrow-parens": "off", "valid-jsdoc": "off", "eol-last": "off", "array-bracket-spacing": "off", "no-unused-vars": "off", "no-else-return": "off", "strict": "off", "linebreak-style": "off", "newline-per-chained-call": "off", "no-irregular-whitespace": [ "error", { "skipComments": true } ], "comma-dangle": [ "error", { "arrays": "only-multiline", "objects": "only-multiline" } ] }, "env": { "browser": true, "node": true, "commonjs": true, "jquery": true, "es6": true }, "globals": { "EASY_ENV_IS_PROD": true, "EASY_ENV_IS_NODE": true, "EASY_ENV_IS_BROWSER": true, "EASY_ENV_IS_DEV": true }, "parser": "babel-eslint" }