build: Updating npm dependencies

* eslint-config-wikimedia: 0.22.1 → 0.24.0
* @wikimedia/mw-node-qunit: 6.3.3 → 7.0.0

Change-Id: I348eb70bfc6c1d6c922c8290152926183712dee1
This commit is contained in:
Umherirrender 2023-04-03 23:04:09 +02:00
parent ec50f3f6ff
commit 3573232c21
7 changed files with 226 additions and 1408 deletions

View file

@ -15,7 +15,10 @@
},
"rules": {
"no-use-before-define": "off",
"jsdoc/no-undefined-types": "off"
"jsdoc/no-undefined-types": "off",
"no-dupe-keys": "warn",
"yml/block-sequence": "warn",
"yml/plain-scalar": "warn"
},
"settings": {
"jsdoc": {

View file

@ -23,7 +23,7 @@
"//": "Work around source maps being included ",
"//": "https://github.com/istanbuljs/nyc/issues/847:",
"//": " Error: ENAMETOOLONG: name too long, open '.../vagrant/mediawiki/extensions/Popups/src/data:application/json;...'",
"//": " Error: ENAMETOOLONG: name too long, open '.../vagrant/mediawiki/extensions/Popups/src/data:application/json;...'",
"//": "Unfortunately, the reported line numbers appear to be",
"//": "nondeterministic across runs when all is enabled and incorrect when",
"//": "disabled.",

1614
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -41,14 +41,14 @@
"@wdio/sync": "7.4.6",
"@wikimedia/codex": "0.8.0",
"@wikimedia/codex-icons": "0.8.0",
"@wikimedia/mw-node-qunit": "6.3.0",
"@wikimedia/mw-node-qunit": "7.0.0",
"babel-loader": "8.0.4",
"browserslist-config-wikimedia": "0.2.0",
"bundlesize": "0.18.1",
"clean-webpack-plugin": "3.0.0",
"cssjanus": "1.3.1",
"eslint": "8.31.0",
"eslint-config-wikimedia": "0.22.1",
"eslint-config-wikimedia": "0.24.0",
"expose-loader": "0.7.5",
"grunt-banana-checker": "0.10.0",
"jquery": "3.6.1",

View file

@ -1,5 +1,6 @@
{
"rules": {
"es/no-object-getownpropertysymbols": "off"
"es/no-object-getownpropertysymbols": "off",
"es-x/no-object-getownpropertysymbols": "warn"
}
}

View file

@ -3,6 +3,7 @@
"wikimedia/qunit"
],
"rules": {
"no-jquery/no-class-state": "off"
"no-jquery/no-class-state": "off",
"es-x/no-hashbang": "warn"
}
}

View file

@ -5,5 +5,8 @@
],
"globals": {
"mw": "readonly"
},
"rules": {
"wdio/no-pause": "warn"
}
}