@html-validate/eslint-config 5.23.4 → 5.24.1
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/dist/cli.js +3 -3
- package/dist/cli.js.map +1 -1
- package/index.js +1 -0
- package/package.json +3 -3
package/index.js
CHANGED
@@ -65,6 +65,7 @@ module.exports = {
|
|
65
65
|
"sonarjs/deprecation": "off", // already covered by @typescript-eslint/no-deprecated
|
66
66
|
"sonarjs/no-empty-test-file": "off", // could be useful but it does not handle it.each or similar constructs thus yields more false positives than its worth */
|
67
67
|
"sonarjs/no-small-switch": "off", // prefer to use small switches when the intention is to all more cases later
|
68
|
+
"sonarjs/unused-import": "off", // already covered by @typescript-eslint/no-unused-vars
|
68
69
|
"sonarjs/prefer-nullish-coalescing": "off", // requires typescript and strictNullChecks, which is sane, but we also use @typescript-eslint/prefer-nullish-coalescing so this becomes redundant
|
69
70
|
"sonarjs/prefer-single-boolean-return": "off", // prefer to use multiple returns even for booleans (looks better and can yield performance increase
|
70
71
|
"sonarjs/sonar-no-control-regex": "off", // already covered by no-control-regexp
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@html-validate/eslint-config",
|
3
|
-
"version": "5.
|
3
|
+
"version": "5.24.1",
|
4
4
|
"description": "Eslint sharable config used by the various HTML-validate packages",
|
5
5
|
"keywords": [
|
6
6
|
"eslint"
|
@@ -42,7 +42,7 @@
|
|
42
42
|
"eslint-config-sidvind": "1.3.2",
|
43
43
|
"eslint-formatter-gitlab": "5.1.0",
|
44
44
|
"eslint-import-resolver-node": "0.3.9",
|
45
|
-
"eslint-import-resolver-typescript": "3.
|
45
|
+
"eslint-import-resolver-typescript": "3.7.0",
|
46
46
|
"eslint-plugin-array-func": "4.0.0",
|
47
47
|
"eslint-plugin-eslint-comments": "3.2.0",
|
48
48
|
"eslint-plugin-import": "2.31.0",
|
@@ -61,5 +61,5 @@
|
|
61
61
|
"publishConfig": {
|
62
62
|
"access": "public"
|
63
63
|
},
|
64
|
-
"gitHead": "
|
64
|
+
"gitHead": "92bcc5f00bbcb07668cd84377bf052b1999df98b"
|
65
65
|
}
|