@html-validate/eslint-config-typescript-typeinfo 5.21.1 → 5.21.2
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.js +9 -2
- package/package.json +4 -4
package/index.js
CHANGED
|
@@ -31,9 +31,16 @@ module.exports = {
|
|
|
31
31
|
/* enforce usage of "type" with export/import */
|
|
32
32
|
"@typescript-eslint/consistent-type-exports": [
|
|
33
33
|
"error",
|
|
34
|
-
{
|
|
34
|
+
{
|
|
35
|
+
fixMixedExportsWithInlineTypeSpecifier: true,
|
|
36
|
+
},
|
|
37
|
+
],
|
|
38
|
+
"@typescript-eslint/consistent-type-imports": [
|
|
39
|
+
"error",
|
|
40
|
+
{
|
|
41
|
+
fixStyle: "inline-type-imports",
|
|
42
|
+
},
|
|
35
43
|
],
|
|
36
|
-
"@typescript-eslint/consistent-type-imports": "error",
|
|
37
44
|
|
|
38
45
|
/* allow constructs such as `unknown | null`, while `unknown` does override
|
|
39
46
|
* `null` it can still serve as a self-documenting type to signal that
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@html-validate/eslint-config-typescript-typeinfo",
|
|
3
|
-
"version": "5.21.
|
|
3
|
+
"version": "5.21.2",
|
|
4
4
|
"description": "Eslint sharable config used by the various HTML-validate packages",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"prepublishOnly": "release-prepublish --retain-scripts"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@typescript-eslint/eslint-plugin": "7.
|
|
31
|
-
"@typescript-eslint/parser": "7.
|
|
30
|
+
"@typescript-eslint/eslint-plugin": "7.15.0",
|
|
31
|
+
"@typescript-eslint/parser": "7.15.0"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"eslint": ">= 7"
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "bdf4badb8b9b8868d77f297950705bcb6184d224"
|
|
44
44
|
}
|