aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc
blob: 5e9153b1a634b555248fe0a26c1d6ed74036a53f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "root": true,
  "parser": "babel-eslint",
  "rules": {
    "consistent-return": 0,
    "no-param-reassign": 0,
    "import/extensions": 0,
    "import/no-extraneous-dependencies": 0,
    "import/prefer-default-export": 0,
    "linebreak-style": 0,
    "prefer-destructuring": 1,
    "no-underscore-dangle": 0,
    "max-len": 0,
    "class-methods-use-this": 0,
    "no-console": 0,
    "no-restricted-syntax": [0, "ForInStatement"]
  },
  "globals": {
    "window": true,
    "document": true,
    "ENV": true
  }
}