summaryrefslogtreecommitdiffstats
path: root/.eslintrc.json
blob: 14450634d62bb498be04c02aad35fc4023a9ee43 (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
{
  "root": true,
  "env": {
    "es6": true,
    "node": true
  },
  "parserOptions": {
    "ecmaVersion": 2019
  },
  "extends": "eslint:recommended",
  "rules": {
    "no-return-await": "error",
    "object-curly-spacing": [
      "error",
      "always"
    ],
    "prefer-template": "error",
    "semi": [
      "error",
      "never"
    ],
    "strict": "error"
  }
}