{ "env": { "browser": true, "node": true, "mocha": true }, "parser": "babel-eslint", "extends": [ "eslint-config-airbnb" ], "globals": { "chai": true, "XMLLite": true }, "rules": { "comma-dangle": 0, "consistent-return": 0, "func-names": 0, "global-require": 0, "import/no-extraneous-dependencies": 0, "import/no-unresolved": 0, "indent": 0, "key-spacing": 0, "linebreak-style": 0, "new-cap": 0, "no-cond-assign": 0, "no-empty": 0, "no-fallthrough": 0, "no-loop-func": 0, "no-mixed-operators": 0, "no-new": 0, "no-param-reassign": 0, "no-restricted-syntax": 0, "no-return-assign": 0, "no-underscore-dangle": 0, "object-curly-spacing": 0, "prefer-rest-params": 0, "react/jsx-filename-extension": 0, "react/jsx-space-before-closing": 0, "strict": 0, "max-len": [ 2, 120, 4, { "ignoreUrls": true } ], "id-length": [ 2, { "min": 1 } ] } }