{ "parser": "babel-eslint", "extends": "airbnb", "rules": { "react/forbid-prop-types": 0, "array-callback-return": 0, "react/no-did-mount-set-state": 0, "react/no-unused-prop-types": 0, "no-cond-assign": 0, "react/require-default-props": 0, "no-underscore-dangle": 0, "no-constant-condition": 0, "consistent-return": 0, "no-bitwise": 0, "no-continue": 0, "react/jsx-no-bind": 0, "jsx-a11y/no-static-element-interactions": 0, "generator-star-spacing": 0, "no-console": 0, "no-trailing-spaces": 0, "no-return-assign": 0, "no-param-reassign": 0, "arrow-body-style": 0, "react/jsx-filename-extension": 0, "import/no-extraneous-dependencies": 0, "no-unused-vars": 0, "import/no-named-as-default": 0, "import/no-named-as-default-member": 0, "react/prefer-stateless-function": 0, "arrow-parens": ["off", "always"], "no-restricted-syntax": 0, "import/prefer-default-export": 0, "react/prop-types": 0, "comma-dangle": ["error", { "arrays": "always-multiline", "objects": "always-multiline", "imports": "always-multiline", "exports": "always-multiline", "functions": "ignore" }], "react/no-array-index-key": 0, "no-debugger": 1 }, "plugins": [ "react" ], "globals": { "window": true } }