aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.json
blob: e7d67eb0e51802ae3dea0fa7c59e8bf5b8a3036d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "root": true,

  "extends": "jquery",

  // Uncomment to find useless comment disable directives
  // "reportUnusedDisableDirectives": true,

  "parserOptions": {
    "ecmaVersion": 2018
  },

  "env": {
    "es6": true,
    "node": true
  },

  "rules": {
    "strict": [ "error", "global" ]
  }
}