@skilbjo/config-rc 1.0.48 → 1.0.49

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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.0.49](https://github.com/skilbjo/config-rc/compare/v1.0.48...v1.0.49) (2026-04-12)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add consistent type imports ([c5030b1](https://github.com/skilbjo/config-rc/commit/c5030b132d3bb08f4c9933f29d790934f128486b))
7
+
1
8
  ## [1.0.48](https://github.com/skilbjo/config-rc/compare/v1.0.47...v1.0.48) (2026-04-12)
2
9
 
3
10
 
package/index.js CHANGED
@@ -106,6 +106,13 @@ const config = tseslint.config(
106
106
  ],
107
107
  rules: {
108
108
  '@typescript-eslint/consistent-type-definitions': ['error', 'type'],
109
+ '@typescript-eslint/consistent-type-imports': [
110
+ 'error',
111
+ {
112
+ prefer: 'type-imports',
113
+ fixStyle: 'inline-type-imports',
114
+ },
115
+ ],
109
116
  '@typescript-eslint/no-floating-promises': 'error',
110
117
  '@typescript-eslint/no-misused-promises': 'error',
111
118
  '@typescript-eslint/no-unsafe-function-type': 'off',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@skilbjo/config-rc",
4
- "version": "1.0.48",
4
+ "version": "1.0.49",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "private": false,