@skilbjo/config-rc 1.0.50 → 1.0.53

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 +14 -0
  2. package/index.js +6 -0
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [1.0.53](https://github.com/skilbjo/config-rc/compare/v1.0.52...v1.0.53) (2026-04-13)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * revert version field to 0.0.1 (managed by semantic-release) ([f25880a](https://github.com/skilbjo/config-rc/commit/f25880add8bc9620ba5847d31f9a13f2e5d125f1))
7
+
8
+ ## [1.0.51](https://github.com/skilbjo/config-rc/compare/v1.0.50...v1.0.51) (2026-04-12)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * no floating promise dropped on test dir ([5f5904c](https://github.com/skilbjo/config-rc/commit/5f5904c672060f937b84f015fe545de34e3dcdc0))
14
+
1
15
  ## [1.0.50](https://github.com/skilbjo/config-rc/compare/v1.0.49...v1.0.50) (2026-04-12)
2
16
 
3
17
 
package/index.js CHANGED
@@ -141,6 +141,12 @@ const config = tseslint.config(
141
141
  '@typescript-eslint/no-wrapper-object-types': 'off',
142
142
  },
143
143
  },
144
+ {
145
+ files: ['**/*.test.ts', '**/*.test.js', 'test/**/*.ts', 'test/**/*.js'],
146
+ rules: {
147
+ '@typescript-eslint/no-floating-promises': 'off',
148
+ },
149
+ },
144
150
  {
145
151
  files: ['**/*.js', '**/*.cjs', '**/*.mjs'],
146
152
  ...tseslint.configs.disableTypeChecked,
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.50",
4
+ "version": "1.0.53",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "private": false,