Skip to content

fix(deps): update eslint rules and plugins#420

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/eslint-rules-and-plugins
Open

fix(deps): update eslint rules and plugins#420
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/eslint-rules-and-plugins

Conversation

@renovate

@renovate renovate Bot commented Jun 18, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@eslint-react/eslint-plugin (source) 5.8.175.13.1 age confidence
@typescript-eslint/parser (source) 8.61.08.63.0 age confidence
@typescript-eslint/rule-tester (source) 8.61.08.63.0 age confidence
@typescript-eslint/utils (source) 8.61.08.63.0 age confidence
eslint-plugin-eslint-plugin 7.4.07.4.1 age confidence
eslint-plugin-import-x 4.16.24.17.1 age confidence
eslint-plugin-n 18.1.018.2.1 age confidence
typescript-eslint (source) 8.61.08.63.0 age confidence

Release Notes

Rel1cx/eslint-react (@​eslint-react/eslint-plugin)

v5.13.1

Compare Source

🐞 Fixes
  • react-x/refs: aligned error message wording for readDuringRender, writeDuringRender, and refPassedToFunction with the React Compiler specification.

Full Changelog: Rel1cx/eslint-react@v5.13.0...v5.13.1

v5.13.0

Compare Source

✨ New
  • react-x/refs now detects nested property writes on a ref's value (e.g. ref.current.inner = value), which are now reported as writeDuringRender instead of being misclassified as a read.
  • react-x/refs now tracks functions bound to (and called through) simple object-member-expression targets (e.g. object.foo = () => ref.current; object.foo();), closing a gap in the render-reachability analysis that previously only covered plain variable bindings.
  • react-x/refs now detects ref.current accesses inside the lazy initializer function passed directly as useState's first argument, since it runs synchronously during the initial render unlike other hook-callback arguments.
  • react-x/refs now exempts calls to a function named render (e.g. props.render(ref), a common render-prop pattern) from the refPassedToFunction diagnostic, alongside the existing mergeRefs/hook exemptions.
🐞 Fixes
  • Improved react-x/refs lazy-init guard-block detection so it is direction-aware: inside the branch of an if (ref.current == null)-style guard that is guaranteed to see ref.current as null, only a direct write is treated as the (single) valid initialization; reads or values passed to a function there are still reported.
🏗️ Internal
  • Refactored react-x/refs internals, replacing isRefCurrentNullCheck with getRefCurrentNullCheckBranch in lib.ts.
  • Upgraded fumadocs packages and preact.
  • Cleaned up redundant code in the react-debug/jsx rule.

Full Changelog: Rel1cx/eslint-react@v5.12.2...v5.13.0

v5.12.1

Compare Source

📝 Documentation
  • Fixed react-x/immutability rule description in docs.
🏗️ Internal
  • Cleaned up redundant code in some rules.

Full Changelog: Rel1cx/eslint-react@v5.12.0...v5.12.1

v5.12.0

Compare Source

✨ New
  • Reworked react-x/immutability to align with the React Compiler's ValidateNoFreezingKnownMutableFunctions validation pass: it now detects functions that (transitively) mutate a captured local variable and reports them when passed as a JSX prop, passed as a hook argument, or returned from a hook. (#​1891)
📝 Documentation
  • Cleaned up the rule relations table.
🏗️ Internal
  • Bumped typescript-eslint packages to ^8.63.0.
  • Bumped eslint-plugin-perfectionist to ^5.10.0.

Full Changelog: Rel1cx/eslint-react@v5.11.3...v5.12.0

v5.11.3

Compare Source

🐞 Fixes
  • Fixed FunctionComponentDetectionHint.DoNotIncludeFunctionDefinedAsClassProperty checking for object Property nodes instead of class PropertyDefinition nodes, so functions defined as class fields are now correctly excluded when the hint is set. (#​1890)
🏗️ Internal
  • Renamed fix helpers and formatted MessageID types.
  • Inlined local string constants in rule implementations.
  • Bumped eslint-plugin-jsdoc, typedoc, undici and pnpm.

Full Changelog: Rel1cx/eslint-react@v5.11.2...v5.11.3

v5.11.2

Compare Source

📝 Documentation
  • Updated rule documentation for React introspection APIs (react-x/no-children-count, react-x/no-children-for-each, react-x/no-children-map, react-x/no-children-only, react-x/no-children-to-array, and react-x/no-clone-element) with clearer guidance on why child introspection creates fragile component coupling and links to Astryx's no-react-introspection rule. (#​1889)
  • Updated the function-component collector sequence diagram on the website.
  • Updated THIRD-PARTY-LICENSE file.

Full Changelog: Rel1cx/eslint-react@v5.11.0...v5.11.2

v5.11.0

Compare Source

✨ New
  • react-x/refs now detects ref mutations/reads inside helper functions that are called (directly, or through a simple variable alias) during render, closing a gap where any nested function was previously treated as a safe boundary regardless of whether it was actually invoked during render.
  • react-x/refs now reports a second guarded ref initialization: only a single if (ref.current == null) { ref.current = ... } guarded initialization is allowed per ref per component/hook, and a second guarded write (in the same or a different if block) is reported as duplicateRefInit.
  • react-x/refs now supports .current accesses whose base is a member expression that looks like a ref (e.g. props.ref.current), not just a plain identifier.
🏗️ Internal
  • Added unit tests for packages/ast/src/check.ts.
  • Bumped @effect/language-service to ^0.86.4 and preact to ^10.29.4.
  • Refactored react-x/static-components internals without changing behavior: findVariableForIdentifier now delegates to @typescript-eslint/utils/ast-utils's findVariable instead of a hand-rolled scope-chain walk, resolveDynamicValue was split into findDynamicCreationSite and findReassignmentCreationSite, and render-boundary/JSX-candidate handling was extracted into dedicated helpers.
  • Unified the signatures of Check.isDirective and Check.isIdentifier in @eslint-react/ast: both now take the node as the first argument and an optional name as the second, replacing the previous curried (name) => (node) => boolean shape. Removed Check.isStringLiteral; use ts-pattern's isMatching or an inline type guard instead.

Full Changelog: Rel1cx/eslint-react@v5.10.4...v5.11.0

v5.10.4

Compare Source

🐞 Fixes
  • Fixed react-x/no-misused-capture-owner-stack not recognizing process.env.NODE_ENV checks wrapped in TypeScript type expressions such as (process.env as any).NODE_ENV. (#​1813)
  • Fixed Extract.getFullyQualifiedName to unwrap TSAsExpression, TSTypeAssertion, TSNonNullExpression, and ChainExpression before resolving names. This improves name resolution for rules that identify React APIs or collect component/hook names through type-wrapped expressions.

Full Changelog: Rel1cx/eslint-react@v5.10.3...v5.10.4

v5.10.3

Compare Source

🏗️ Internal
  • Bumped typescript-eslint packages to ^8.62.1.
  • Bumped @effect/language-service to ^0.86.3.
  • Bumped undici and undici-types to ^8.6.0.
  • Updated the @eslint-react/eslint-plugin package description.

Full Changelog: Rel1cx/eslint-react@v5.10.2...v5.10.3

v5.10.2

Compare Source

🐞 Fixes
  • Fixed an issue where several rules treated computed identifier keys in spread props (e.g. <div {...{ [key]: value }} />) as static prop names. The actual property name is the runtime value of the variable; computed string literal keys are still recognized. Affected rules:
    • react-x/no-missing-key
    • react-jsx/no-children-prop-with-children
    • react-jsx/no-children-prop
    • react-jsx/no-useless-fragment
    • react-dom/no-dangerously-set-innerhtml-with-children
    • react-dom/no-dangerously-set-innerhtml
    • react-dom/no-missing-button-type
    • react-dom/no-missing-iframe-sandbox
    • react-dom/no-string-style-prop
    • react-dom/no-unsafe-iframe-sandbox
    • react-dom/no-unsafe-target-blank
    • react-dom/no-void-elements-with-children
    • react-web-api/no-leaked-event-listener
    • react-web-api/no-leaked-fetch
  • Fixed react-x/unsupported-syntax to no longer report IIFEs in JSX. This makes the rule consistent with the upstream react-hooks/unsupported-syntax and removes the iife message.
✨ New
  • react-x/unsupported-syntax now detects eval calls via globalThis.eval, globalThis["eval"], and type assertions like (globalThis as any).eval.
🏗️ Internal
  • Added an optional resolve parameter to Extract.getPropertyName so callers can control how identifier and private identifier property names are resolved.
  • Added unit tests for Extract.getPropertyName.

Full Changelog: Rel1cx/eslint-react@v5.10.1...v5.10.2

v5.10.1

Compare Source

🐞 Fixes
  • Added the missing static-components rule to disable-conflict-eslint-plugin-react-hooks, closes #​1884.
📝 Documentation
  • Rewrote the noCircularEffect recipe sample to use @eslint-react/kit collectors and simpleTraverse, and updated the recipe overview accordingly.
  • Removed the under construction brand assets page from the website.
🏗️ Internal
  • Bumped typescript-eslint, @types/node, vite, and tailwindcss.
  • Bumped fumadocs, lucide-react, and postcss in the website.

Full Changelog: Rel1cx/eslint-react@v5.10.0...v5.10.1

v5.10.0

Compare Source

📝 Documentation
  • Added status emoji markers to recipe and rule documentation code examples (#​1882).
  • Fixed the v5.7.2 changelog entry for react-x/no-unused-state.
  • Updated the community projects list.
🏗️ Internal
  • Bumped eslint to ^10.6.0.
  • Bumped js-yaml workspace override to ^4.3.0.

Full Changelog: Rel1cx/eslint-react@v5.9.5...v5.10.0

v5.9.5

Compare Source

🐞 Fixes
  • Compare.isEqual now recognizes structurally identical CallExpression nodes. This fixes false positives in the following rules when the compared target (event target, controller, or observed element) is derived from a function call such as window.matchMedia('…') or getEl():
    • react-web-api/no-leaked-event-listener
    • react-web-api/no-leaked-fetch
    • react-web-api/no-leaked-resize-observer
    • react-web-api/no-leaked-intersection-observer

Full Changelog: Rel1cx/eslint-react@v5.9.4...v5.9.5

v5.9.4

Compare Source

🐞 Fixes
  • The following rules now detect member expression calls made with computed string property access (e.g. obj["foo"]()):
    • react-x/no-array-index-key
    • react-x/no-duplicate-key
    • react-x/no-unnecessary-use-prefix
    • react-x/set-state-in-effect
    • react-x/set-state-in-render
    • react-dom/no-find-dom-node
    • react-dom/no-flush-sync
    • react-dom/no-hydrate
    • react-dom/no-render
    • react-dom/no-render-return-value
    • react-dom/no-use-form-state
    • react-web-api/no-leaked-fetch
📝 Documentation
  • Updated the community page and project list.
🏗️ Internal
  • Unified member expression property name checks with Extract.getPropertyName (#​1881).
  • Updated dependencies and switched postinstall to prepare.

Full Changelog: Rel1cx/eslint-react@v5.9.3...v5.9.4

v5.9.3

Compare Source

🐞 Fixes
  • ast: Corrected the TSESTreeJSX union and handling of computed member expressions (#​1877).
  • jsx: Handled namespaced host elements and cleaned up the spread child API (#​1876).
📝 Documentation
  • Refined the rule feature system docs and renamed the term-based patterns document.
  • Renamed import-paths.md to path-aliases.md.
  • Updated JSX type aliases and unwrap documentation.
🏗️ Internal
  • Aligned RuleContext imports in the kit package.
  • Bumped typescript-eslint packages to ^8.62.0 and related dependencies.
  • Renamed scripts with numeric prefixes and renamed verify-* scripts to check-*.
  • Replaced pnpm run with node --run across scripts (#​1879).
  • Replaced the website brand component with an inline logo SVG.
  • Restructured the test directory and added integration tests (#​1880).
  • Updated nx to ^23.0.1 and pnpm to 11.9.0.

Full Changelog: Rel1cx/eslint-react@v5.9.2...v5.9.3

v5.9.2

Compare Source

📝 Documentation
  • Cleaned up the "Further Reading" links in the rule docs.
🏗️ Internal
  • Switched to pnpm/action-setup to install Node and pnpm in CI.
  • Updated dependencies and the lockfile.
  • Updated the baseline.json timestamp and quality signal.

Full Changelog: Rel1cx/eslint-react@v5.9.1...v5.9.2

v5.9.1

Compare Source

📝 Documentation
  • Updated rule patterns and feature system documentation (#​1875).
  • Refined naming convention rule docs for context-name, id-name, and ref-name (#​1873).
  • Updated the example comment in the react-x/unsupported-syntax docs.
  • Removed the ast.unwrap example from the kit package docs.
  • Fixed a typo in a warning callout description.
🏗️ Internal
  • Bumped actions/checkout to v7.0.0 (#​1874).
  • Moved getHumanReadableKind from the ast package into the specific rules that use it.
  • Moved the iterator callback position map for react-x/no-missing-key into lib.ts.
  • Updated dprint line width to 160 and reformatted the codebase.
  • Updated eslint to ^10.5.0 and bumped miscellaneous dependencies.
  • Updated the dprint JSON plugin to v0.22.0.
  • Updated the baseline and DocsPage styling, and pruned pnpm workspace excludes.

Full Changelog: Rel1cx/eslint-react@v5.9.0...v5.9.1

v5.9.0

Compare Source

✨ New
  • Added react-web-api/no-leaked-intersection-observer rule to prevent leaked IntersectionObserver instances in components and hooks, enabled as warn in the recommended preset (#​1841, #​1868).
🐞 Fixes
  • react-web-api/no-leaked-intersection-observer, react-web-api/no-leaked-resize-observer: Report when disconnect is only called inside the observer's own callback, since the callback may never run if the component unmounts before the element intersects or resizes (#​1872).
🏗️ Internal
  • Improved CI configuration and updated SECURITY.md documentation (#​1871).
  • Bumped fumadocs-core and fumadocs-ui to 16.10.1.
New Contributors

Full Changelog: Rel1cx/eslint-react@v5.8.19...v5.9.0

v5.8.19

Compare Source

🏗️ Internal
  • Simplified isJsxLike in core package and added behavior boundary tests (#​1869).
  • Aligned code style in jsx package with core package (#​1870).
  • Updated @types/node to ^25.9.3.

Full Changelog: Rel1cx/eslint-react@v5.8.18...v5.8.19

v5.8.18

Compare Source

🐞 Fixes
  • Improved key detection in react-x/no-array-index-key and react-x/no-missing-key rules (#​1867).
📝 Documentation
  • Removed 'See Also' sections from custom rule recipes.
  • Reordered AST section in kit package docs (#​1866).
  • Formatted examples as accordions in kit package docs.
🏗️ Internal
  • Removed postinstall script on the website.
  • Updated textlint rules for inclusive language.
  • Updated dependencies and relaxed eslint peer dependency.

Full Changelog: Rel1cx/eslint-react@v5.8.17...v5.8.18

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.63.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.62.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.62.0

Compare Source

🚀 Features
  • remove redundant package.json "files" (#​12444)
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.61.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/rule-tester)

v8.63.0

Compare Source

This was a version bump only for rule-tester to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.62.1

Compare Source

This was a version bump only for rule-tester to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.62.0

Compare Source

🚀 Features
  • remove redundant package.json "files" (#​12444)
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.61.1

Compare Source

This was a version bump only for rule-tester to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/utils)

v8.63.0

Compare Source

This was a version bump only for utils to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.62.1

Compare Source

This was a version bump only for utils to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.62.0

Compare Source

🚀 Features
  • remove redundant package.json "files" (#​12444)
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.61.1

Compare Source

This was a version bump only for utils to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

eslint-community/eslint-plugin-eslint-plugin (eslint-plugin-eslint-plugin)

v7.4.1

Compare Source

Bug Fixes
  • Avoid false positives with unresolved meta object spreads in require-meta-* rules (0b08887)
Chores
un-ts/eslint-plugin-import-x (eslint-plugin-import-x)

v4.17.1

Compare Source

Patch Changes
  • #​498 cf25a01 Thanks @​marcalexiei! - fix(extensions): don't require an extension for package subpaths that resolve to a .d.ts (e.g. vitest/config)

v4.17.0

Compare Source

Minor Changes
  • #​474 4b2c0c5 Thanks @​regseb! - Support RegExp in the import-x/ignore setting and the ignore option of the no-unresolved rule.
Patch Changes
  • #​494 1c84235 Thanks @​morgan-coded! - Fixed no-unresolved crashing when case-sensitive path checks encounter EACCES or EPERM on an ancestor directory.

  • #​481 3e13121 Thanks @​B4nan! - fix: memoize legacyNodeResolve resolver to avoid native memory leak

  • #​484 9a07009 Thanks @​sairus2k! - Make the extensions rule check Node.js subpath imports (specifiers starting with #, e.g. #utils/helper). Previously parsePath treated a leading # as a URL hash fragment, so the rule skipped extension validation for these imports.

    Note: single-segment subpath imports without a slash (e.g. #dep) are still skipped by the existing external-root-module classification; fixing that is deferred to avoid expanding scope.

  • #​468 240ed58 Thanks @​silverwind! - Make extensions handle .d.ts correctly

  • #​479 e3cc7e4 Thanks @​mrginglymus! - fix: strip querystrings and hash fragments when checking for file existence

  • #​476 fce29b1 Thanks @​nbouvrette! - fix(deps): replace @​package-json/types with an inline minimal type

eslint-community/eslint-plugin-n (eslint-plugin-n)

v18.2.1

Compare Source

🩹 Fixes

v18.2.0

Compare Source

🌟 Features
typescript-eslint/typescript-eslint (typescript-eslint)

v8.63.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.62.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.62.0

Compare Source

🚀 Features
  • remove redundant package.json "files" (#​12444)
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.61.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the renovate label Jun 18, 2026
@renovate renovate Bot requested a review from frantic1048 June 18, 2026 00:44
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from 54bb554 to 0125c13 Compare June 18, 2026 00:45
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from 0125c13 to acbf6cc Compare June 19, 2026 08:16
@renovate renovate Bot changed the title fix(deps): update eslint rules and plugins to v5.8.18 fix(deps): update eslint rules and plugins to v5.8.19 Jun 19, 2026
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from acbf6cc to 9274c68 Compare June 19, 2026 08:17
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from 9274c68 to b775daa Compare June 19, 2026 21:45
@renovate renovate Bot changed the title fix(deps): update eslint rules and plugins to v5.8.19 fix(deps): update eslint rules and plugins to v5.9.0 Jun 19, 2026
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from b775daa to 69437bd Compare June 19, 2026 21:46
@renovate renovate Bot changed the title fix(deps): update eslint rules and plugins to v5.9.0 fix(deps): update eslint rules and plugins Jun 22, 2026
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from 69437bd to 9ab7803 Compare June 22, 2026 21:58
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from 9ab7803 to a8fff8b Compare June 22, 2026 21:59
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from a8fff8b to 1a88b28 Compare June 26, 2026 19:49
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from 1a88b28 to 4acd88e Compare June 26, 2026 19:50
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from 4acd88e to 2c5c749 Compare June 29, 2026 19:10
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from 2c5c749 to 2261191 Compare June 29, 2026 19:11
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from 2261191 to ef8eec2 Compare July 2, 2026 11:17
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from ef8eec2 to 5eeb4c6 Compare July 2, 2026 11:18
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from 5eeb4c6 to c6197cd Compare July 2, 2026 15:09
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from c6197cd to c69b9c7 Compare July 2, 2026 15:11
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from c69b9c7 to 22899df Compare July 3, 2026 05:57
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from 22899df to 5c87a21 Compare July 3, 2026 05:58
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from 5c87a21 to 629255a Compare July 3, 2026 16:35
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from 629255a to 831d2ac Compare July 3, 2026 16:36
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from 831d2ac to 8af6bc3 Compare July 4, 2026 00:49
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from 8af6bc3 to dc567ec Compare July 4, 2026 00:50
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from dc567ec to b35d666 Compare July 5, 2026 10:01
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from b35d666 to 82baa2d Compare July 5, 2026 10:02
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from 82baa2d to ca70a78 Compare July 6, 2026 21:17
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from ca70a78 to aebc8a0 Compare July 6, 2026 21:18
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from aebc8a0 to ac6950b Compare July 7, 2026 17:12
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from ac6950b to 709aeaa Compare July 7, 2026 17:14
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from 709aeaa to 2785955 Compare July 9, 2026 20:14
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from 2785955 to 19dbd41 Compare July 9, 2026 20:16
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from 19dbd41 to a74fcc3 Compare July 10, 2026 10:17
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from a74fcc3 to 3aaf767 Compare July 10, 2026 10:18
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from 3aaf767 to afcc462 Compare July 11, 2026 03:43
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from afcc462 to 4b30b3a Compare July 11, 2026 03:44
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from 4b30b3a to 00f0051 Compare July 11, 2026 12:49
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from 00f0051 to f167fad Compare July 11, 2026 12:50
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from f167fad to 109a22d Compare July 12, 2026 08:54
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from 109a22d to 54b3283 Compare July 12, 2026 08:55
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from 54b3283 to 5f45188 Compare July 12, 2026 16:06
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from 5f45188 to a442e03 Compare July 12, 2026 16:07
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from a442e03 to 3d89e2f Compare July 13, 2026 19:05
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from 3d89e2f to ac847c3 Compare July 13, 2026 19:06
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from ac847c3 to 36c52ae Compare July 14, 2026 06:15
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from 36c52ae to 16eca85 Compare July 14, 2026 06:16
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from 16eca85 to 5418920 Compare July 15, 2026 13:03
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from 5418920 to b6d13e4 Compare July 15, 2026 13:04
@renovate renovate Bot force-pushed the renovate/eslint-rules-and-plugins branch from b6d13e4 to 68d9561 Compare July 16, 2026 04:46
@rc-actions-bot rc-actions-bot Bot force-pushed the renovate/eslint-rules-and-plugins branch from 68d9561 to 137c149 Compare July 16, 2026 04:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Development

Successfully merging this pull request may close these issues.

1 participant