.eslintrc 279 Bytes
Newer Older
1
{
2
3
4
5
6
7
8
9
  "extends": "eslint:recommended",
  "env": {
    "browser": true,
    "commonjs": true,
    "node": true,
    "es6": true
  },
  "parserOptions": {
10
    "ecmaVersion": 2018
11
12
13
  },
  "rules": {
    "no-console": "off",
14
15
    "strict": ["error", "global"],
    "curly": "warn"
16
  }
17
}