@anolilab/eslint-config 27.0.10 → 28.0.0

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,18 @@
1
+ ## @anolilab/eslint-config [28.0.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/eslint-config@27.0.10...@anolilab/eslint-config@28.0.0) (2026-06-20)
2
+
3
+ ### ⚠ BREAKING CHANGES
4
+
5
+ * **deps:** updated dependencies to major versions
6
+
7
+ ### Bug Fixes
8
+
9
+ * **deps:** update eslint ([9a62669](https://github.com/anolilab/javascript-style-guide/commit/9a62669619b41c96b9adac7f9418ca95fa17d865))
10
+ * **deps:** update eslint ([0500a32](https://github.com/anolilab/javascript-style-guide/commit/0500a32e98b5c5eb591d4b7320ff3a558f83dc69))
11
+
12
+ ### Styles
13
+
14
+ * **deps:** update eslint to v1 ([4a0f84a](https://github.com/anolilab/javascript-style-guide/commit/4a0f84a126aeb7f0e4e96512edeec93e8bd20ff3))
15
+
1
16
  ## @anolilab/eslint-config [27.0.10](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/eslint-config@27.0.9...@anolilab/eslint-config@27.0.10) (2026-06-11)
2
17
 
3
18
  ## @anolilab/eslint-config [27.0.9](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/eslint-config@27.0.8...@anolilab/eslint-config@27.0.9) (2026-06-11)
package/dist/index.d.ts CHANGED
@@ -4355,6 +4355,11 @@ interface RuleOptions {
4355
4355
  * @see https://react.dev/learn/you-might-not-need-an-effect#sharing-logic-between-event-handlers
4356
4356
  */
4357
4357
  'react-you-might-not-need-an-effect/no-event-handler'?: Linter.RuleEntry<[]>;
4358
+ /**
4359
+ * Disallow subscribing to an external store in an effect.
4360
+ * @see https://react.dev/learn/you-might-not-need-an-effect#subscribing-to-an-external-store
4361
+ */
4362
+ 'react-you-might-not-need-an-effect/no-external-store-subscription'?: Linter.RuleEntry<[]>;
4358
4363
  /**
4359
4364
  * Disallow initializing state in an effect.
4360
4365
  * @see https://tkdodo.eu/blog/avoiding-hydration-mismatches-with-use-sync-external-store
@@ -4366,7 +4371,7 @@ interface RuleOptions {
4366
4371
  */
4367
4372
  'react-you-might-not-need-an-effect/no-pass-data-to-parent'?: Linter.RuleEntry<[]>;
4368
4373
  /**
4369
- * Disallow passing live state to parent components in an effect.
4374
+ * Disallow passing live state to parents in an effect.
4370
4375
  * @see https://react.dev/learn/you-might-not-need-an-effect#notifying-parent-components-about-state-changes
4371
4376
  */
4372
4377
  'react-you-might-not-need-an-effect/no-pass-live-state-to-parent'?: Linter.RuleEntry<[]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anolilab/eslint-config",
3
- "version": "27.0.10",
3
+ "version": "28.0.0",
4
4
  "description": "ESLint shareable config for the Anolilab JavaScript style guide.",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -152,9 +152,9 @@
152
152
  "@tanstack/eslint-plugin-router": "1.161.6",
153
153
  "@unocss/eslint-plugin": "66.6.8",
154
154
  "astro-eslint-parser": "1.4.0",
155
- "eslint": ">=9.38.0",
155
+ "eslint": ">=9.39.4",
156
156
  "eslint-plugin-astro": "1.7.0",
157
- "eslint-plugin-format": ">=0.1.0",
157
+ "eslint-plugin-format": ">=1.5.0",
158
158
  "eslint-plugin-jsx-a11y": "^6.10.2",
159
159
  "eslint-plugin-oxlint": "1.62.0",
160
160
  "eslint-plugin-playwright": "^0.16.0 || ^0.18.0 || ^2.0.0",
@@ -163,7 +163,7 @@
163
163
  "eslint-plugin-react-hooks": "7.1.1",
164
164
  "eslint-plugin-react-perf": "^3.3.3",
165
165
  "eslint-plugin-react-refresh": "0.5.2",
166
- "eslint-plugin-react-you-might-not-need-an-effect": "0.10.0",
166
+ "eslint-plugin-react-you-might-not-need-an-effect": "1.0.1",
167
167
  "eslint-plugin-storybook": "10.3.6",
168
168
  "eslint-plugin-tailwindcss": "3.18.3",
169
169
  "eslint-plugin-testing-library": "7.16.2",