@comet/eslint-config 9.0.0-canary-20251209132220 → 9.0.0-canary-20251209140438

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,6 +1,6 @@
1
1
  # @comet/eslint-config
2
2
 
3
- ## 9.0.0-canary-20251209132220
3
+ ## 9.0.0-canary-20251209140438
4
4
 
5
5
  ### Major Changes
6
6
 
@@ -10,13 +10,35 @@
10
10
 
11
11
  ### Minor Changes
12
12
 
13
+ - 9d5e331: Enable `@typescript-eslint/consistent-type-exports` in `@comet/eslint-config/future/react.js`
14
+
15
+ ### Patch Changes
16
+
17
+ - @comet/eslint-plugin@9.0.0-canary-20251209140438
18
+
19
+ ## 8.10.0
20
+
21
+ ### Patch Changes
22
+
23
+ - @comet/eslint-plugin@8.10.0
24
+
25
+ ## 8.9.0
26
+
27
+ ### Patch Changes
28
+
29
+ - @comet/eslint-plugin@8.9.0
30
+
31
+ ## 8.8.0
32
+
33
+ ### Minor Changes
34
+
13
35
  - f8bf3f5: Detect React version in `@comet/eslint-config/react.js` and `@comet/eslint-config/nextjs.js`
14
36
 
15
37
  Removes the `React version not specified in eslint-plugin-react settings. See https://github.com/jsx-eslint/eslint-plugin-react#configuration.` warning.
16
38
 
17
39
  ### Patch Changes
18
40
 
19
- - @comet/eslint-plugin@9.0.0-canary-20251209132220
41
+ - @comet/eslint-plugin@8.8.0
20
42
 
21
43
  ## 8.7.1
22
44
 
package/future/react.js CHANGED
@@ -13,6 +13,12 @@ const config = [
13
13
  allowedStrings: ["…", "€", "$", "?", "–", "—", "/", "(", ")", "%"],
14
14
  },
15
15
  ],
16
+ "@typescript-eslint/consistent-type-exports": [
17
+ "error",
18
+ {
19
+ fixMixedExportsWithInlineTypeSpecifier: true,
20
+ },
21
+ ],
16
22
  },
17
23
  },
18
24
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comet/eslint-config",
3
- "version": "9.0.0-canary-20251209132220",
3
+ "version": "9.0.0-canary-20251209140438",
4
4
  "description": "A set of ESLint configurations for Comet projects",
5
5
  "repository": {
6
6
  "directory": "packages/eslint-config",
@@ -28,7 +28,7 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "@calm/eslint-plugin-react-intl": "^1.4.1",
31
- "@eslint/eslintrc": "^3.3.1",
31
+ "@eslint/eslintrc": "^3.3.3",
32
32
  "@eslint/js": "^9.30.1",
33
33
  "@next/eslint-plugin-next": "^16.0.3",
34
34
  "eslint-config-prettier": "^10.1.5",
@@ -44,7 +44,7 @@
44
44
  "globals": "^15.15.0",
45
45
  "npm-run-all2": "^8.0.0",
46
46
  "typescript-eslint": "^8.24.1",
47
- "@comet/eslint-plugin": "9.0.0-canary-20251209132220"
47
+ "@comet/eslint-plugin": "9.0.0-canary-20251209140438"
48
48
  },
49
49
  "devDependencies": {
50
50
  "eslint": "^9.30.1",
@@ -69,6 +69,7 @@
69
69
  },
70
70
  "scripts": {
71
71
  "lint": "run-p lint:prettier lint:eslint",
72
+ "lint:ci": "pnpm run lint",
72
73
  "lint:eslint": "eslint --max-warnings 0 *.json ",
73
74
  "lint:prettier": "pnpm exec prettier --check './**/*.{js,json,md,yml,yaml}'"
74
75
  }