@html-validate/eslint-config-jest 7.0.0 → 7.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.mjs +3 -0
- package/package.json +3 -3
package/index.mjs
CHANGED
|
@@ -46,6 +46,9 @@ export default defineConfig({
|
|
|
46
46
|
/* often yields false positives when using expect(fn).toHaveBeenCalled() */
|
|
47
47
|
"@typescript-eslint/unbound-method": "off",
|
|
48
48
|
|
|
49
|
+
/* for testcases we don't care about usage of http over https */
|
|
50
|
+
"sonarjs/no-clear-text-protocols": "off",
|
|
51
|
+
|
|
49
52
|
/* common in testcases, kind of useless */
|
|
50
53
|
"sonarjs/no-duplicate-string": "off",
|
|
51
54
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@html-validate/eslint-config-jest",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.13",
|
|
4
4
|
"description": "Eslint sharable config used by the various HTML-validate packages",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"prepublishOnly": "release-prepublish --retain-scripts"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"eslint-plugin-jest": "29.15.
|
|
32
|
+
"eslint-plugin-jest": "29.15.2"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"eslint": "^9.0.0"
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "05ef3c35ae193909fc7fd5196d9f0593d2a04ae1"
|
|
45
45
|
}
|