{ "parser": "babel-eslint", "extends": "airbnb", "plugins": [ "react" ], "globals": { "window": true, "$": true, "Waves": true, "document": true, "KeyLines": true, "io": true, "describe": true, "it": true, "expect": true, "afterEach": true, "beforeEach": true, "jest": true, "test": true, "XMLHttpRequest": true }, "rules": { "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], "react/prop-types": 0, "react/default-props": 0, "react/forbid-prop-types": 0, "react/no-string-refs": 0, "react/jsx-no-bind": 0, "react/prefer-stateless-function": 0, "import/prefer-default-export": 0, "import/no-extraneous-dependencies": 0, "import/no-named-as-default": 0, "class-methods-use-this": 0, "jsx-a11y/no-static-element-interactions": 0, "jsx-a11y/click-events-have-key-events": 0, "object-curly-newline": 0, "jsx-a11y/label-has-for": 0, "jsx-a11y/href-no-hash": 0, "arrow-parens": 0, "no-underscore-dangle": 0, "no-lonely-if": 0, "max-len": [2, { "code": 120, "ignoreComments": true }], "prefer-spread": 0, "no-console": 0, "no-alert": 0, "no-plusplus": 0, "no-param-reassign": 0, "no-new-func": 0, "no-fallthrough": 0, "no-nested-ternary": 0, "no-unused-expressions": 0, "prefer-destructuring": 0 } }