@4mbl/lint 0.0.0-beta.d17fc69 → 0.0.0-beta.df1c48b

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,5 +1,11 @@
1
1
  # @4mbl/lint
2
2
 
3
+ ## 0.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - d17fc69: Fix react template export
8
+
3
9
  ## 0.3.0
4
10
 
5
11
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4mbl/lint",
3
- "version": "0.0.0-beta.d17fc69",
3
+ "version": "0.0.0-beta.df1c48b",
4
4
  "description": "Linting configuration for various environments.",
5
5
  "type": "module",
6
6
  "author": "4mbl",
package/src/react.ts CHANGED
@@ -2,10 +2,12 @@ import js from '@eslint/js';
2
2
  import prettier from 'eslint-config-prettier/flat';
3
3
  import reactHooks from 'eslint-plugin-react-hooks';
4
4
  import reactRefresh from 'eslint-plugin-react-refresh';
5
- import { defineConfig, globalIgnores } from 'eslint/config';
5
+ import { defineConfig, globalIgnores, type Config } from 'eslint/config';
6
6
  import globals from 'globals';
7
7
  import tseslint from 'typescript-eslint';
8
8
 
9
+ export { Config };
10
+
9
11
  export default defineConfig([
10
12
  js.configs.recommended,
11
13
  tseslint.configs.recommended,