@html-validate/eslint-config-typescript-typeinfo 5.21.0 → 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.
Files changed (2) hide show
  1. package/index.js +9 -2
  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
- { fixMixedExportsWithInlineTypeSpecifier: true },
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.0",
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.13.1",
31
- "@typescript-eslint/parser": "7.13.1"
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": "11feb2c7cef3ed5e3f1ee8e8b9b276d8c2dec71c"
43
+ "gitHead": "bdf4badb8b9b8868d77f297950705bcb6184d224"
44
44
  }