Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency @eslint-react/eslint-plugin to v1.24.1 #106

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 27, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@eslint-react/eslint-plugin (source) 1.5.30 -> 1.24.1 age adoption passing confidence

Release Notes

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

v1.24.1

Compare Source

🐞 Fixes
  • fix: fixed invalid rules for disable-debug, disable-dom, and disable-web-apis configs, closes #​923 by @​Rel1cx in #​924

v1.24.0

Compare Source

🪄 Improvements
  • perf: overhaul performance optimizations

v1.23.2

Compare Source

✨ New
  • feat(plugins/x): add auto-fix to prefer-shorthand-fragment, closes #​898 (#​902)

v1.23.1

Compare Source

🐞 Fixes
  • fix(plugins/x): fixed false positives in no-unstable-context-value and no-unstable-default-props by @​Rel1cx in #​896

v1.23.0

Compare Source

🪄 Improvements
  • refactor: JSX fragments related rules no longer rely on jsxPragma and jsxPragmaFrag settings to perform their checks by @​Rel1cx in #​893
  • refactor: improve applicability of the no-useless-fragment and prefer-shorthand-fragment rules
  • refactor: deprecate settings["react-x"].jsxPragma and settings["react-x"].jsxPragmaFrag as they are no longer needed by any rules
  • refactor: replace short-unique-id w/ uid by @​SukkaW in #​894
🐞 Fixes
  • fix(plugins/hooks-extra): fix call and new expression related false positives in no-unnecessary-use-memo and no-unnecessary-use-callback by @​Rel1cx in #​895

v1.22.2

Compare Source

🪄 Improvements
  • perf: re-implement no-duplicate-key rule to improve its performance @​Rel1cx in #​891 and 33ab3cc
  • refactor: prevent potential interference from TypeScript's as, satisfies, and non-null assertion operator in various rules

v1.22.1

Compare Source

🪄 Improvements
  • docs: add getting started guides for JavaScript, TypeScript, and JavaScript with Babel
  • docs: improve code samples in rules docs
  • docs: improve eslint.config.js examples in README.md, docs and the examples folder
  • docs: improve the error message and description of various rules
  • refactor(website): better website layout and navigation experience
📝 Changes in examples

The eslint.config.js in the examples now uses tsconfig's includes and excludes as the SSoT glob patterns for ESLint's files and ignores fields.

This approach can fundamentally avoid the errors[1, 2, 3] caused by mismatched config scopes between tsconfig.json and eslint.config.js when using type-checked rules.

v1.22.0

Compare Source

🪄 Improvements
  • refactor(plugins/x): rename jsx-use-vars to use-jsx-vars
  • refactor(plugins/x): rename jsx-no-duplicate-props to no-duplicate-jsx-props
  • refactor(plugins/dom): rename no-children-in-void-dom-elements to no-void-elements-with-children
📝 Changes you should be aware of

The following rules have been renamed:

  • jsx-uses-vars to use-jsx-vars
  • jsx-no-duplicate-props to no-duplicate-jsx-props
  • dom/no-children-in-void-dom-elements to dom/no-void-elements-with-children

The new rule names are aligned with the same rules in the biomejs/rules-sources/#eslint-plugin-react (if any) to enhance consistency. The old rule names will still be available until the next major update to avoid breaking changes.

v1.21.0

Compare Source

✨ New
  • feat(plugins/hooks-extra): add no-useless-custom-hooks rule by @​Rel1cx
🪄 Improvements
  • refactor(plugins/hooks-extra): deprecate rule no-redundant-custom-hook in favor of no-useless-custom-hooks (the previous rule will still be available until the next major update to avoid breaking changes)
📝 Changes in Rule implementation

no-useless-custom-hooks now detects Hook calls within comments and the following code no longer triggers a warning:

// ✅ Good: A Hook that will likely use some other Hooks later
function useAuth() {
  // TODO: Replace with this line when authentication is implemented:
  // return useContext(Auth);
  return TEST_USER;
}

v1.20.1

Compare Source

🪄 Improvements
  • refactor(shared): replace local-pkg package with node built-in API by @​Rel1cx in #​881

v1.20.0

Compare Source

✨ New
  • feat(plugins/x): add codemod-autofix to no-component-will-* by @​Rel1cx in #​879
🪄 Improvements

v1.19.0

Compare Source

✨ New
  • feat(plugins/x): add no-context-provider rule by @​Rel1cx
  • feat(plugins/x): add autofix for no-forward-ref rule by @​Rel1cx in #​874
  • feat(plugins/eslint-plugin): add no-forward-ref and no-context-provider to recommended presets by @​Rel1cx
🪄 Improvements
  • refactor(plugins/eslint-plugin): remove prefer-read-only-props from recommended-type-checked preset by @​Rel1cx in #​872
  • refactor(plugins/eslint-plugin): hide avoid-shorthand-boolean and avoid-shorthand-fragment from presets and docs by @​Rel1cx in #​876
  • Update @typescript-eslint's packages to ^8.18.0

v1.18.0

Compare Source

✨ New
🪄 Improvements
  • perf(plugins/dom): improve performance of no-void-elements-with-children by @​Rel1cx

v1.17.3

Compare Source

🐞 Fixes
  • fix(plugins/web-api): add 'forEach' support to 'no-leaked-event-listener', closes #​842 by @​Rel1cx in #​867
  • fix(plugins/web-api): add 'for of' support to 'no-leaked-event-listenner', closes #​842 by @​Rel1cx in #​869
  • fix(plugins/x): 'no-array-index-key' mistaking 'foo.bar.map' for 'Rea… by @​Rel1cx in #​868
🪄 Improvements
  • Update @typescript-eslint's packages to ^8.17.0

v1.17.2

Compare Source

🪄 Improvements
  • Update eslint's packages to ^9.16.0
  • Update @typescript-eslint's packages to ^8.16.0
  • Update ts-api-utils to ^2.0.0

v1.17.1

Compare Source

✨ New
  • feat(shared): add version detection logic;
🐞 Fixes
  • fix(plugins/x): 'no-leaked-conditional-rendering' should also warn 'anyStringVar' when react version is lower than 18, closes #​853 by @​Rel1cx in #​864
  • fix(plugins/dom): add popover api props to 'no-unknown-property', closes #​855 by @​Rel1cx in #​865
  • fix(plugins/debug): 'is-from-react' use correct settings when calling 'isInitializedFromReact', by @​Rel1cx

v1.17.0

Compare Source

✨ New
  • feat(plugins/naming-convention): add 'ignoreFilesWithoutCode' option to 'filename-extension'
🐞 Fixes
  • refactor(plugins/x): xhtml entities should be allowed inside of 'no-useless-fragment', closes: #​850
  • fix(plugins/eslint-plugin): unexpected top-level property 'name' in legacy presets, closes #​863
  • fix(plugins/eslint-plugin): rules list in 'debug' and 'disable-debug' presets

v1.16.2

Compare Source

🐞 Fixes
🪄 Improvements

v1.16.1

Compare Source

✨ New
🪄 Improvements
  • docs: use correct link for prefer-react-namespace-import in rule list by @​rakleed in #​849

v1.15.2

Compare Source

🪄 Improvements
  • Update @typescript-eslint's packages to ^8.12.1

v1.15.1

Compare Source

✨ New
  • feat: added code fixer to react-x/avoid-shorthand-boolean and react-x/prefer-shorthand-fragment by @​Rel1cx
🐞 Fixes
  • fix(plugins/react-x): respect semicolon by @​hyoban in #​841
  • fix(utilities/ast): added missing ts as and satisfies expressions handling to getFunctionIdentifier by @​Rel1cx , closes #​843

v1.15.0

Compare Source

✨ New
🐞 Fixes
  • fix: Fix false positives when 'web-api/no-leaked-event-listener' passes a signal to an intermediate variable, closes #​838
🪄 Improvements
  • docs: Update hooks-extra-no-direct-set-state-in-use-effect.mdx by @​neovov in #​831
  • docs: use a standard mono-width font for the docs, closes #​835 by @​Rel1cx in #​837
  • Undeprecate hooks-extra-no-direct-set-state-in-use-layout-effect and remove it from recommended presets, closes #​839 by @​Rel1cx in #​840

v1.14.3

Compare Source

🪄 Improvements
  • Update @typescript-eslint's packages to ^8.7.0

v1.14.2

Compare Source

🪄 Improvements
  • Update @typescript-eslint's packages to ^8.6.0

v1.14.1

Compare Source

🐞 Fixes
  • Fixed false positives in rule web-api/no-leaked-resize-observer

v1.14.0

Compare Source

🐞 Fixes
  • Fixed modular plugins missing default export
  • Fixed component name detection when the component name starts with a underscore
🪄 Improvements
  • Update @typescript-eslint's packages to ^8.5.0

v1.13.1

Compare Source

🐞 Fixes
  • Fixed hooks-extra/no-unnecessary-use-callback and hooks-extra/no-unnecessary-use-memo false positives when there are references from nested scopes

v1.13.0

Compare Source

✨ New
  • Added web-api/no-leaked-resize-observer rule to prevent leaked ResizeObserver
🐞 Fixes
  • hooks-extra/no-useless-custom-hooks should allow custom Hooks with empty body
🪄 Improvements
  • Rename debug/react-hooks to debug/hook
  • Rename hooks-extra/ensure-custom-using-hooks to hooks-extra/no-useless-custom-hooks
  • Rename hooks-extra/ensure-use-memo-has-non-empty-deps to hooks-extra/no-unnecessary-use-memo
  • Rename hooks-extra/ensure-use-callback-has-non-empty-deps to hooks-extra/no-unnecessary-use-callback
  • Upgrade @typescript-eslint's packages to ^8.4.0

(The rules that were renamed in this release will still be available until the next major update to avoid breaking changes.)

v1.12.4

Compare Source

✨ New
  • Added useLayoutEffect and useInsertionEffect support to hooks-extra/no-direct-set-state-in-use-effect
🪄 Improvements
  • Deprecate rule hooks-extra/no-direct-set-state-in-use-layout-effect in favor of hooks-extra/no-direct-set-state-in-use-effect (the previous rule will still be available until the next major update to avoid breaking changes)

v1.12.3

Compare Source

✨ New
  • Added support for detecting event listeners removed by abort signal in rule web-api/no-leaked-event-listener
🐞 Fixes
  • Fixed no-duplicate-key rule false positives when the key is a variable
  • Fixed web-api/no-leaked-set-timeout and web-api/no-leaked-set-interval false positives when a timer is assigned to a variable declared by let but not initialized

v1.12.2

Compare Source

✨ New
  • Added type declarations for react-x settings to the @typescript-eslint/utils/ts-eslint module via the SharedConfigurationSettings interface
🪄 Improvements
  • Improve the performance of the no-missing-key and no-duplicate-key rules
  • Upgrade @typescript-eslint's packages to ^8.3.0

v1.12.1

Compare Source

✨ New
  • Add the options allowAllCaps, allowNamespace, allowLeadingUnderscore to naming-convention/component-name and set their default values to false
🪄 Improvements
  • Normalize the component name in rule naming-convention/component-name before checking it against the pattern

v1.12.0

Compare Source

✨ New
  • Added hooks-extra rules to recommended and recommended-legacy presets

v1.11.0

Compare Source

✨ New
  • Added eslint-plugin-react-web-api - A plugin that provides rules for interacting with Web APIs in React applications
  • Added web-api/no-leaked-timeout rule to prevent leaked setTimeout
  • Added web-api/no-leaked-interval rule to prevent leaked setInterval
  • Added web-api/no-leaked-event-listener rule to prevent leaked addEventListener
  • Added web-api and web-api-legacy presets to enable all rules provided by eslint-plugin-react-web-api
  • Added react-web-api/no-leaked-event-listener to recommended and recommended-legacy presets
🪄 Improvements
  • Improve performance by skipping unnecessary checks when possible
  • Improve dts generation of the @eslint-react/eslint-plugin package
  • Improve website and documentation
  • Upgrade @typescript-eslint's packages to ^8.2.0

v1.10.1

Compare Source

🐞 Fixes
  • Fixed hooks-extra/prefer-use-state-lazy-initialization false positive when using an initializer function
🪄 Improvements
  • Improve rule no-implicit-key error marker position and range
  • Upgrade @typescript-eslint's packages to ^8.1.0
  • Improve website and documentation

v1.10.0

Compare Source

✨ New
  • Added disable-type-checked and disable-type-checked-legacy presets to disable all type-checked rules
🪄 Improvements
  • Rename off-dom and off-dom-legacy presets to disable-dom and disable-dom-legacy (the old names will still be available until the next major update to avoid breaking changes)

v1.9.1

Compare Source

🐞 Fixes
  • Fixed dom/no-missing-iframe-sandbox false positive when the sandbox attribute is set to sandbox=""
  • Fixed all and all-legacy presets not including hooks-extra rules

v1.9.0

Compare Source

✨ New
  • Add core preset that includes the most essential rules
🪄 Improvements
  • Upgrade @typescript-eslint's packages to 8.0.1

v1.8.2

Compare Source

🐞 Fixes
  • Fixed legacy presets not being exported correctly in @eslint-react/eslint-plugin

v1.8.1

Compare Source

🪄 Improvements
  • Enhance rule hooks-extra/no-direct-set-state-in-use-effect and hooks-extra/no-direct-set-state-in-use-layout-effect to support set function directly passed to useCallback and useMemo without explicitly calling it
  • Improve website and documentation

v1.8.0

Compare Source

🐞 Fixes
  • Fixed ESLintReactSettings type not being exported correctly
  • Fixed the set function calls that are wrapped in a useMemo or useCallback like hook not being detected by hooks-extra/no-direct-set-state-in-use-effect and hooks-extra/no-direct-set-state-in-use-layout-effect
🪄 Improvements
  • Upgrade @typescript-eslint's packages to 8.0.0
  • Improve website and documentation

v1.7.1

Compare Source

🐞 Fixes
  • Fixed the spread attributes support for dom related rules
  • Fixed the issue where the overridden value was retrieved when there were duplicate attributes on a JSX element
🪄 Improvements
  • Rule no-leaked-conditional-rendering now allows a falsy boolean literal to be used on the left side of the logical expression
  • Tweaked the default settings shipped with various presets
  • Overall performance improvements

v1.7.0

Compare Source

✨ New
  • Add settings["react-x"].polymorphicPropName setting to specify the name of the prop that is used to determine the component type
🪄 Improvements
  • Dropped the current incomplete lint support for React.createElement to improve performance and subsequent code maintainability

v1.6.0

Compare Source

✨ New
  • Add controlled setting to settings["react-x"].additionalComponents' attributes object to set whether it is controlled or not
  • Add glob support to settings["react-x"].additionalComponents' name setting
  • Add default settings for react-x settings to presets
  • Undeprecate rule no-implicit-key and improve its usefulness
  • Undeprecate rule no-complicated-conditional-rendering and rename it to no-complex-conditional-rendering (the previous rule will still be available until the next major update to avoid breaking changes)
🐞 Fixes
  • no-direct-set-state-in-use-(layout?)-effect should warn only for the set function
🪄 Improvements
  • Remove no-direct-set-state-in-use-(layout?)-effect from recommended presets

Configuration

📅 Schedule: 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from a83be32 to 849b788 Compare July 29, 2024 22:34
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.6.0 Update dependency @eslint-react/eslint-plugin to v1.7.0 Jul 29, 2024
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.7.0 Update dependency @eslint-react/eslint-plugin to v1.7.1 Jul 31, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch 2 times, most recently from 3151ad4 to 8674be7 Compare August 1, 2024 22:06
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.7.1 Update dependency @eslint-react/eslint-plugin to v1.8.0 Aug 1, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from 8674be7 to 3c4dcb1 Compare August 3, 2024 03:15
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.8.0 Update dependency @eslint-react/eslint-plugin to v1.8.1 Aug 3, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from 3c4dcb1 to b35032b Compare August 3, 2024 07:19
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.8.1 Update dependency @eslint-react/eslint-plugin to v1.8.2 Aug 3, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from b35032b to 917120d Compare August 6, 2024 01:22
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.8.2 Update dependency @eslint-react/eslint-plugin to v1.9.0 Aug 6, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from 917120d to 57fc60a Compare August 8, 2024 15:16
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.9.0 Update dependency @eslint-react/eslint-plugin to v1.9.1 Aug 8, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch 2 times, most recently from 692170e to 296f404 Compare August 11, 2024 14:14
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.9.1 Update dependency @eslint-react/eslint-plugin to v1.10.0 Aug 11, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from 296f404 to e35ae0f Compare August 13, 2024 14:59
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.10.0 Update dependency @eslint-react/eslint-plugin to v1.10.1 Aug 13, 2024
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.10.1 Update dependency @eslint-react/eslint-plugin to v1.11.0 Aug 20, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch 2 times, most recently from 67e28b8 to 899c22c Compare August 21, 2024 05:00
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.11.0 Update dependency @eslint-react/eslint-plugin to v1.12.0 Aug 21, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from 899c22c to 8fb79a2 Compare August 22, 2024 14:55
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.12.0 Update dependency @eslint-react/eslint-plugin to v1.12.1 Aug 22, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from 8fb79a2 to 1b765b0 Compare August 27, 2024 06:29
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.12.1 Update dependency @eslint-react/eslint-plugin to v1.12.2 Aug 27, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from 1b765b0 to 6e35050 Compare August 29, 2024 04:33
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.12.2 Update dependency @eslint-react/eslint-plugin to v1.12.3 Aug 29, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from 6e35050 to 306281a Compare August 31, 2024 04:09
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.17.0 Update dependency @eslint-react/eslint-plugin to v1.17.1 Nov 22, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from 2bc0c36 to e7c0a07 Compare December 1, 2024 13:30
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.17.1 Update dependency @eslint-react/eslint-plugin to v1.17.2 Dec 1, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from e7c0a07 to c77a682 Compare December 2, 2024 21:46
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.17.2 Update dependency @eslint-react/eslint-plugin to v1.17.3 Dec 2, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from c77a682 to 71fd8ff Compare December 7, 2024 19:44
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.17.3 Update dependency @eslint-react/eslint-plugin to v1.18.0 Dec 7, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from 71fd8ff to 16cd370 Compare December 9, 2024 23:50
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.18.0 Update dependency @eslint-react/eslint-plugin to v1.19.0 Dec 9, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from 16cd370 to 45d7eb4 Compare December 16, 2024 12:54
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.19.0 Update dependency @eslint-react/eslint-plugin to v1.20.0 Dec 16, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from 45d7eb4 to ba8499d Compare December 18, 2024 04:28
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.20.0 Update dependency @eslint-react/eslint-plugin to v1.20.1 Dec 18, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from ba8499d to 954c73d Compare December 20, 2024 04:36
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.20.1 Update dependency @eslint-react/eslint-plugin to v1.21.0 Dec 20, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from 954c73d to 28589e4 Compare December 22, 2024 02:06
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.21.0 Update dependency @eslint-react/eslint-plugin to v1.22.0 Dec 22, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from 28589e4 to 026fdb7 Compare December 24, 2024 01:14
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.22.0 Update dependency @eslint-react/eslint-plugin to v1.22.1 Dec 24, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from 026fdb7 to 9fa205f Compare December 30, 2024 14:14
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.22.1 Update dependency @eslint-react/eslint-plugin to v1.22.2 Dec 30, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from 9fa205f to 333c137 Compare December 31, 2024 12:52
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.22.2 Update dependency @eslint-react/eslint-plugin to v1.23.0 Dec 31, 2024
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from 333c137 to a4fca88 Compare January 7, 2025 19:34
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.23.0 Update dependency @eslint-react/eslint-plugin to v1.23.2 Jan 7, 2025
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.23.2 Update dependency @eslint-react/eslint-plugin to v1.24.0 Jan 20, 2025
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from a4fca88 to 9d3652b Compare January 20, 2025 17:01
@renovate renovate bot force-pushed the renovate/eslint-react-eslint-plugin-1.x branch from 9d3652b to 78079d2 Compare January 22, 2025 05:57
@renovate renovate bot changed the title Update dependency @eslint-react/eslint-plugin to v1.24.0 Update dependency @eslint-react/eslint-plugin to v1.24.1 Jan 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

0 participants