@skilbjo/config-rc 1.0.30 → 1.0.32

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 (3) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/index.js +10 -4
  3. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,3 +1,18 @@
1
+ ## [1.0.32](https://github.com/skilbjo/config-rc/compare/v1.0.31...v1.0.32) (2026-01-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps-dev:** bump lodash in the npm_and_yarn group across 1 directory ([#469](https://github.com/skilbjo/config-rc/issues/469)) ([75c01c6](https://github.com/skilbjo/config-rc/commit/75c01c6729f13701c99aee1878b45f97748c543c))
7
+ * still adjusting for eslint9 ([38df363](https://github.com/skilbjo/config-rc/commit/38df363b48efcba46d78a03ff1a8870260855f04))
8
+
9
+ ## [1.0.31](https://github.com/skilbjo/config-rc/compare/v1.0.30...v1.0.31) (2026-01-22)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * update export ([322f58d](https://github.com/skilbjo/config-rc/commit/322f58d35149cea78c0995799c445e40ac7e77e9))
15
+
1
16
  ## [1.0.30](https://github.com/skilbjo/config-rc/compare/v1.0.29...v1.0.30) (2026-01-21)
2
17
 
3
18
 
package/index.js CHANGED
@@ -41,9 +41,7 @@ const baseConfig = tseslint.config(
41
41
  ...prettierPlugin.configs.recommended.rules,
42
42
  ...securityPlugin.configs['recommended-legacy'].rules,
43
43
  ...perfectionistPlugin.configs['recommended-alphabetical-legacy'].rules,
44
-
45
44
  '@typescript-eslint/no-non-null-assertion': 1,
46
- '@typescript-eslint/no-unused-vars': 1,
47
45
  eqeqeq: 2,
48
46
  'import/default': 2,
49
47
  'import/export': 2,
@@ -97,7 +95,7 @@ const baseConfig = tseslint.config(
97
95
  },
98
96
  extends: [
99
97
  ...tseslint.configs.recommended,
100
- ...tseslint.configs.strict,
98
+ ...tseslint.configs.strict, // Note: This includes 'no-unused-vars': 'error'
101
99
  importPlugin.configs.typescript,
102
100
  ],
103
101
  rules: {
@@ -111,7 +109,15 @@ const baseConfig = tseslint.config(
111
109
  {
112
110
  files: ['**/*.js', '**/*.cjs', '**/*.mjs'],
113
111
  ...tseslint.configs.disableTypeChecked,
112
+ },
113
+ {
114
+ // FINAL OVERRIDES: This block ensures your project-wide tolerances
115
+ // are preserved regardless of any "strict" configs extended above.
116
+ rules: {
117
+ '@typescript-eslint/no-unused-vars': 1, // Warn
118
+ '@typescript-eslint/no-unused-expressions': 'off',
119
+ 'no-unused-vars': 1, // Warn for pure JS files
120
+ },
114
121
  }
115
122
  );
116
-
117
123
  module.exports = { baseConfig };
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@skilbjo/config-rc",
4
- "version": "1.0.30",
4
+ "version": "1.0.32",
5
5
  "description": "eslint, prettier, & tsconfig config",
6
6
  "main": "index.js",
7
7
  "exports": {
8
- "module": "./index.js",
9
- "require": "./index.js",
10
- "default": "./index.js"
8
+ ".": "./index.js",
9
+ "./tsconfig.json": "./tsconfig.json",
10
+ "./*": "./*"
11
11
  },
12
12
  "private": false,
13
13
  "repository": {