@skilbjo/config-rc 1.0.53 → 1.0.54

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,11 @@
1
+ ## [1.0.54](https://github.com/skilbjo/config-rc/compare/v1.0.53...v1.0.54) (2026-04-13)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * extend no-floating-promises off to tsx and jsx test files ([a278c1b](https://github.com/skilbjo/config-rc/commit/a278c1b9715151fab1bebc352ff5f22b2bf2f835))
7
+ * prettier formatting for test files array ([2bf8c32](https://github.com/skilbjo/config-rc/commit/2bf8c32a941e25ee4422f507d28c405a45c0b668))
8
+
1
9
  ## [1.0.53](https://github.com/skilbjo/config-rc/compare/v1.0.52...v1.0.53) (2026-04-13)
2
10
 
3
11
 
package/index.js CHANGED
@@ -142,7 +142,15 @@ const config = tseslint.config(
142
142
  },
143
143
  },
144
144
  {
145
- files: ['**/*.test.ts', '**/*.test.js', 'test/**/*.ts', 'test/**/*.js'],
145
+ files: [
146
+ '**/*.test.ts',
147
+ '**/*.test.tsx',
148
+ '**/*.test.js',
149
+ '**/*.test.jsx',
150
+ 'test/**/*.ts',
151
+ 'test/**/*.tsx',
152
+ 'test/**/*.js',
153
+ ],
146
154
  rules: {
147
155
  '@typescript-eslint/no-floating-promises': 'off',
148
156
  },
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.53",
4
+ "version": "1.0.54",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "private": false,