@skilbjo/config-rc 1.0.31 → 1.0.33

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,19 @@
1
+ ## [1.0.33](https://github.com/skilbjo/config-rc/compare/v1.0.32...v1.0.33) (2026-01-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * fix ([5394e93](https://github.com/skilbjo/config-rc/commit/5394e9325b5c076a0e7fbe1bb52477c8f262a7a4))
7
+ * more tweaks ([722a04f](https://github.com/skilbjo/config-rc/commit/722a04f61c628c3d5606d4ce1168bb9e234b2a2a))
8
+
9
+ ## [1.0.32](https://github.com/skilbjo/config-rc/compare/v1.0.31...v1.0.32) (2026-01-22)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * **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))
15
+ * still adjusting for eslint9 ([38df363](https://github.com/skilbjo/config-rc/commit/38df363b48efcba46d78a03ff1a8870260855f04))
16
+
1
17
  ## [1.0.31](https://github.com/skilbjo/config-rc/compare/v1.0.30...v1.0.31) (2026-01-22)
2
18
 
3
19
 
package/eslint.config.mjs CHANGED
@@ -1,3 +1,5 @@
1
- import { baseConfig } from './index.js';
1
+ import { config } from './index.js';
2
2
 
3
- export default baseConfig;
3
+ export { config } from './index.js';
4
+
5
+ export default config; // required
package/index.js CHANGED
@@ -9,7 +9,7 @@ const securityPlugin = require('eslint-plugin-security');
9
9
  const perfectionistPlugin = require('eslint-plugin-perfectionist');
10
10
  const globals = require('globals');
11
11
 
12
- const baseConfig = tseslint.config(
12
+ const config = tseslint.config(
13
13
  {
14
14
  ignores: ['target/**', 'node_modules/**', '.git/**'],
15
15
  },
@@ -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
- module.exports = { baseConfig };
123
+ module.exports = { config };
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.31",
4
+ "version": "1.0.33",
5
5
  "description": "eslint, prettier, & tsconfig config",
6
6
  "main": "index.js",
7
7
  "exports": {