@comet/eslint-config 9.0.0-canary-20251013121422 → 9.0.0-canary-20251113142723

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-20251013121422
3
+ ## 9.0.0-canary-20251113142723
4
4
 
5
5
  ### Major Changes
6
6
 
@@ -10,7 +10,51 @@
10
10
 
11
11
  ### Patch Changes
12
12
 
13
- - @comet/eslint-plugin@9.0.0-canary-20251013121422
13
+ - @comet/eslint-plugin@9.0.0-canary-20251113142723
14
+
15
+ ## 8.6.0
16
+
17
+ ### Patch Changes
18
+
19
+ - @comet/eslint-plugin@8.6.0
20
+
21
+ ## 8.5.2
22
+
23
+ ### Patch Changes
24
+
25
+ - @comet/eslint-plugin@8.5.2
26
+
27
+ ## 8.5.1
28
+
29
+ ### Patch Changes
30
+
31
+ - dcb9712: Disable `@next/next/no-img-element` rule
32
+ - @comet/eslint-plugin@8.5.1
33
+
34
+ ## 8.5.0
35
+
36
+ ### Patch Changes
37
+
38
+ - @comet/eslint-plugin@8.5.0
39
+
40
+ ## 8.4.2
41
+
42
+ ### Patch Changes
43
+
44
+ - @comet/eslint-plugin@8.4.2
45
+
46
+ ## 8.4.1
47
+
48
+ ### Patch Changes
49
+
50
+ - @comet/eslint-plugin@8.4.1
51
+
52
+ ## 8.4.0
53
+
54
+ ### Patch Changes
55
+
56
+ - 576731f: Allow `%` as a string literal in `future/react.js`
57
+ - @comet/eslint-plugin@8.4.0
14
58
 
15
59
  ## 8.3.0
16
60
 
package/future/react.js CHANGED
@@ -10,7 +10,7 @@ const config = [
10
10
  "react/jsx-no-literals": [
11
11
  "error",
12
12
  {
13
- allowedStrings: ["…", "€", "$", "?", "–", "—", "/", "(", ")"],
13
+ allowedStrings: ["…", "€", "$", "?", "–", "—", "/", "(", ")", "%"],
14
14
  },
15
15
  ],
16
16
  },
package/nextjs.js CHANGED
@@ -64,6 +64,7 @@ const config = [
64
64
  "react/self-closing-comp": "error",
65
65
  "react/jsx-no-useless-fragment": ["error", { allowExpressions: true }],
66
66
  "react/react-in-jsx-scope": "off",
67
+ "@next/next/no-img-element": "off",
67
68
  },
68
69
  },
69
70
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comet/eslint-config",
3
- "version": "9.0.0-canary-20251013121422",
3
+ "version": "9.0.0-canary-20251113142723",
4
4
  "description": "A set of ESLint configurations for Comet projects",
5
5
  "repository": {
6
6
  "directory": "packages/eslint-config",
@@ -45,7 +45,7 @@
45
45
  "globals": "^15.15.0",
46
46
  "npm-run-all2": "^8.0.0",
47
47
  "typescript-eslint": "^8.24.1",
48
- "@comet/eslint-plugin": "9.0.0-canary-20251013121422"
48
+ "@comet/eslint-plugin": "9.0.0-canary-20251113142723"
49
49
  },
50
50
  "devDependencies": {
51
51
  "eslint": "^9.30.1",
@@ -71,6 +71,6 @@
71
71
  "scripts": {
72
72
  "lint": "run-p lint:prettier lint:eslint",
73
73
  "lint:eslint": "eslint --max-warnings 0 *.json ",
74
- "lint:prettier": "npx prettier --check './**/*.{js,json,md,yml,yaml}'"
74
+ "lint:prettier": "pnpm exec prettier --check './**/*.{js,json,md,yml,yaml}'"
75
75
  }
76
76
  }