@html-validate/eslint-config-typescript 9.4.0 → 9.5.0
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 +6 -2
- package/package.json +3 -3
package/index.mjs
CHANGED
|
@@ -59,7 +59,7 @@ export default defineConfig({
|
|
|
59
59
|
...stylistic.rules,
|
|
60
60
|
...importConfig.rules,
|
|
61
61
|
|
|
62
|
-
/*
|
|
62
|
+
/* TypeScript handles the return types */
|
|
63
63
|
"consistent-return": "off",
|
|
64
64
|
|
|
65
65
|
"tsdoc/syntax": "error",
|
|
@@ -117,7 +117,11 @@ export default defineConfig({
|
|
|
117
117
|
/* covered by @typescript-eslint/no-unused-vars */
|
|
118
118
|
"sonarjs/no-dead-store": "off",
|
|
119
119
|
|
|
120
|
-
/* disable unicorn rules covered by
|
|
120
|
+
/* disable unicorn rules covered by TypeScript or @typescript-eslint */
|
|
121
|
+
"unicorn/no-invalid-argument-count": "off",
|
|
122
|
+
"unicorn/no-optional-chaining-on-undeclared-variable": "off",
|
|
123
|
+
"unicorn/no-undeclared-class-members": "off",
|
|
124
|
+
"unicorn/no-useless-template-literals": "off",
|
|
121
125
|
"unicorn/no-new-array": "off" /* @typescript-eslint/no-array-constructor */,
|
|
122
126
|
"unicorn/no-new-buffer": "off" /* @typescript-eslint/no-deprecated */,
|
|
123
127
|
"unicorn/no-this-assignment": "off" /* @typescript-eslint/no-this-alias */,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@html-validate/eslint-config-typescript",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.5.0",
|
|
4
4
|
"description": "Eslint sharable config used by the various HTML-validate packages",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"eslint-plugin-import-x": "4.16.2",
|
|
33
33
|
"eslint-plugin-tsdoc": "0.5.2",
|
|
34
|
-
"typescript-eslint": "8.61.
|
|
34
|
+
"typescript-eslint": "8.61.1"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"eslint": "^10.0.0"
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "bcdd8a68ca8a4c57fa4b2b27dad0e86e7f9e7c50"
|
|
47
47
|
}
|