aboutsummaryrefslogblamecommitdiffstats
path: root/.eslintrc
blob: dc0ed4ca02b78b2d5b9047f3252dc4984da1d516 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                            






                                                             




                                        
{
  "parser": "babel-eslint",
  "extends": ["@cobinhood/eslint-config-cobinhood/browser"],
    "plugins": ["react", "jsx-a11y"],
    "env": {
      "browser": true,
      "node": true,
      "jest": true,
      "es6": true
    },
  "parserOptions": {
    "ecmaVersion": 6,
    "sourceType": "module",
    "ecmaFeatures": {
      "jsx": true
    }
  },
  "settings": {
    "import/resolver": {
      "webpack": {
        "config": "./internals/webpack/webpack.prod.babel.js"
      }
    }
  },
  "rules": {
    "import/no-named-as-default": "off",
    "react/forbid-prop-types": "off"
  }
}