Merge "build: Introduce eslint-plugin-qunit and enforce"
[lhc/web/wiklou.git] / tests / qunit / .eslintrc.json
1 {
2 "extends": [
3 "../../.eslintrc.json",
4 "plugin:qunit/recommended",
5 "plugin:qunit/two"
6 ],
7 "env": {
8 "qunit": true
9 },
10 "globals": {
11 "sinon": false
12 },
13 "rules": {
14 "operator-linebreak": 0,
15 "quote-props": [ "error", "as-needed" ],
16 "valid-jsdoc": 0,
17 "qunit/require-expect": 0,
18 "qunit/resolve-async": 0
19 },
20 "plugins": [ "qunit" ]
21 }