{ "parser": "babel-eslint", "extends": "airbnb", "env": { "browser": true, "node": true, "mocha": true, "es6": true }, "parserOptions": { "sourceType": "module", "ecmaFeatures": { "jsx": true } }, "globals": { "__DEV__": true }, "rules": { "strict": 0, "arrow-body-style": 0, "arrow-parens": 0, "default-case": 0, "generator-star-spacing": 0, "global-require": 0, "new-cap": 0, "no-alert": 0, "no-confusing-arrow": 0, "no-console": 0, "no-constant-condition": 0, "no-duplicate-imports": 0, "no-restricted-syntax": 0, "no-underscore-dangle": 0, "no-use-before-define": 0, "import/no-duplicates": 0, "import/no-unresolved": 0, "react/jsx-no-bind": 0, "react/jsx-filename-extension": 0, "react/forbid-prop-types": 0, "react/prefer-stateless-function": 0, "react/sort-comp": 0 } }