aboutsummaryrefslogtreecommitdiff
path: root/js/tests/unit/.eslintrc.json
blob: 3153849cf0b8432b0d28dfb85a952fd9ae5ac04b (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
25
26
27
28
29
30
31
32
33
34
{
  "extends": [
    "../../../.eslintrc.json",
    "plugin:qunit/recommended"
  ],
  "parserOptions": {
    "ecmaVersion": 5,
    "sourceType": "script"
  },
  "env": {
    "es6": false,
    "jquery": true,
    "qunit": true
  },
  "globals": {
    "bootstrap": false,
    "sinon": false,
    "Util": false,
    "Alert": false,
    "Button": false,
    "Carousel": false,
    "Simulator": false,
    "Toast": false
  },
  "rules": {
    "no-var": "off",
    "object-shorthand": "off",
    "prefer-arrow-callback": "off",
    "prefer-rest-params": "off",
    "prefer-template": "off",
    "unicorn/prefer-add-event-listener": "off",
    "unicorn/prefer-spread": "off"
  }
}