mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-12-04 04:28:18 +00:00
dec9c6321c
Where appropriate, convert assert.ok to assert.strictEqual. Change-Id: I098ade9928958e8c2d36de221361d89b5c70ec35
18 lines
303 B
JSON
18 lines
303 B
JSON
{
|
|
"extends": [
|
|
"../../.eslintrc.json",
|
|
"plugin:qunit/recommended",
|
|
"plugin:qunit/two"
|
|
],
|
|
"env": {
|
|
"qunit": true
|
|
},
|
|
"rules": {
|
|
"qunit/no-assert-equal": "error",
|
|
"qunit/no-early-return": "error",
|
|
"qunit/no-negated-ok": "error",
|
|
"qunit/require-expect": 0
|
|
},
|
|
"plugins": [ "qunit" ]
|
|
}
|