summaryrefslogtreecommitdiff
path: root/.eslintrc.json
blob: 0aae820ecdb5e5d4333a392868a619866100092b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "env": {
    "es6": true,
    "node": true
  },
  "extends": [
    "eslint:recommended",
    "plugin:prettier/recommended"
  ],
  "parserOptions": {
    "ecmaVersion": 2017
  },
  "rules": {
    "no-console": "off",
    "no-var": "error",
    "prefer-const": "error",
    "no-constant-condition": [
      "error",
      {
        "checkLoops": false
      }
    ]
  }
}