@4mbl/lint 0.0.0-beta.309f3dd → 0.0.0-beta.393b1c5

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,64 @@
1
1
  # @4mbl/lint
2
2
 
3
+ ## 0.13.0
4
+
5
+ ### Minor Changes
6
+
7
+ - ac23f1d: Upgrade config dependencies
8
+
9
+ ## 0.12.0
10
+
11
+ ### Minor Changes
12
+
13
+ - dd16619: Upgrade config dependencies
14
+
15
+ ## 0.11.0
16
+
17
+ ### Minor Changes
18
+
19
+ - e011cd6: Upgrade config dependencies
20
+
21
+ ## 0.10.0
22
+
23
+ ### Minor Changes
24
+
25
+ - 774cb2a: Upgrade config dependencies
26
+
27
+ ## 0.9.0
28
+
29
+ ### Minor Changes
30
+
31
+ - aee78b7: Upgrade config dependencies
32
+
33
+ ## 0.8.0
34
+
35
+ ### Minor Changes
36
+
37
+ - 152396b: Upgrade config dependencies
38
+
39
+ ## 0.7.0
40
+
41
+ ### Minor Changes
42
+
43
+ - 8e46d6b: Upgrade config dependencies
44
+
45
+ ### Patch Changes
46
+
47
+ - 8e46d6b: Re-export types with type-keyword to fix verbatimModuleSyntax
48
+
49
+ ## 0.6.0
50
+
51
+ ### Minor Changes
52
+
53
+ - 46d0443: Upgrade config dependencies
54
+
55
+ ## 0.5.0
56
+
57
+ ### Minor Changes
58
+
59
+ - 55c3db6: Export `defineConfig` from eslint
60
+ - f7d30bb: Upgrade config dependencies
61
+
3
62
  ## 0.4.0
4
63
 
5
64
  ### Minor Changes
package/README.md CHANGED
@@ -41,7 +41,7 @@ publicHoistPattern:
41
41
 
42
42
  ## Available templates
43
43
 
44
- There is currently one config template.
44
+ These are the currently available config templates.
45
45
 
46
46
  - **Next** - Extending the Next.js linting config.
47
47
  - **Node** - Linting configuration for Node.js.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4mbl/lint",
3
- "version": "0.0.0-beta.309f3dd",
3
+ "version": "0.0.0-beta.393b1c5",
4
4
  "description": "Linting configuration for various environments.",
5
5
  "type": "module",
6
6
  "author": "4mbl",
@@ -26,16 +26,16 @@
26
26
  "lint"
27
27
  ],
28
28
  "dependencies": {
29
- "@eslint/js": "^9.39.1",
30
- "eslint": "^9.39.1",
31
- "eslint-config-next": "^16.0.3",
29
+ "@eslint/js": "^10.0.1",
30
+ "eslint": "^9.39.2",
31
+ "eslint-config-next": "^16.1.6",
32
32
  "eslint-config-prettier": "^10.1.8",
33
33
  "eslint-plugin-react-compiler": "19.1.0-rc.2",
34
34
  "eslint-plugin-react-hooks": "^7.0.1",
35
- "eslint-plugin-react-refresh": "^0.4.24",
36
- "globals": "^16.5.0",
35
+ "eslint-plugin-react-refresh": "^0.5.0",
36
+ "globals": "^17.3.0",
37
37
  "jiti": "^2.6.1",
38
- "typescript-eslint": "^8.48.0"
38
+ "typescript-eslint": "^8.55.0"
39
39
  },
40
40
  "scripts": {}
41
41
  }
package/src/next.ts CHANGED
@@ -5,10 +5,10 @@ import nextTs from 'eslint-config-next/typescript';
5
5
  import prettier from 'eslint-config-prettier/flat';
6
6
  import * as reactCompiler from 'eslint-plugin-react-compiler';
7
7
  import reactHooks from 'eslint-plugin-react-hooks';
8
- import { Config, defineConfig, globalIgnores } from 'eslint/config';
8
+ import { type Config, defineConfig, globalIgnores } from 'eslint/config';
9
9
  import tseslint from 'typescript-eslint';
10
10
 
11
- export { Config, defineConfig };
11
+ export { type Config, defineConfig };
12
12
 
13
13
  export default defineConfig([
14
14
  js.configs.recommended,
package/src/node.ts CHANGED
@@ -3,7 +3,7 @@ import { defineConfig, globalIgnores, type Config } from 'eslint/config';
3
3
  import globals from 'globals';
4
4
  import tseslint from 'typescript-eslint';
5
5
 
6
- export { Config, defineConfig };
6
+ export { type Config, defineConfig };
7
7
 
8
8
  export default defineConfig([
9
9
  globalIgnores(['dist/**']),
package/src/react.ts CHANGED
@@ -6,7 +6,7 @@ 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, defineConfig };
9
+ export { type Config, defineConfig };
10
10
 
11
11
  export default defineConfig([
12
12
  js.configs.recommended,