Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 12, 2024

This PR contains the following updates:

Package Type Update Change
eslint-plugin-nodeeslint-plugin-n dependencies replacement ^11.1.0 -> ^14.0.0

This is a special PR that replaces eslint-plugin-node with the community suggested minimal stable replacement version.


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR is behind base branch, 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.


PR-Codex overview

This PR focuses on updating the eslint related packages and their configurations in the eslint-config/package.json and yarn.lock files. It replaces eslint-plugin-node with eslint-plugin-n, upgrades the version of eslint-plugin-es, and adds is-core-module.

Detailed summary

  • Replaced eslint-plugin-node with eslint-plugin-n (version updated from ^11.1.0 to ^14.0.0).
  • Updated eslint-plugin-es version from ^3.0.0 to ^4.1.0.
  • Added is-core-module with version ^2.3.0.
  • Updated eslint-utils version from ^2.0.0 to ^3.0.0.
  • Updated eslint peer dependency from >=5.16.0 to >=7.0.0.

✨ Ask PR-Codex anything about this PR by commenting with /codex {your question}

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jul 12, 2024
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Jul 12, 2024

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Walkthrough

The ESLint configuration has been updated by removing the eslint-plugin-node dependency and adding eslint-plugin-n with version ^14.0.0. This change modifies the linting setup while keeping the overall dependency structure intact.

Changes

File Change Summary
eslint-config/package.json Removed eslint-plugin-node version ^11.1.0, added eslint-plugin-n version ^14.0.0.

Poem

In the garden of code, hops a rabbit so spry,
With plugins anew, we’ll reach for the sky!
A change in the air, fresh linting to see,
With eslint-plugin-n, we’ll dance with glee!
So hop, little coder, let’s clean up the mess,
Together we thrive, in code we’ll progress! 🐇✨


Comment @coderabbitai help to get the list of available commands and usage tips.

@netlify
Copy link

netlify bot commented Jul 12, 2024

Deploy Preview for kleros-v2-university failed. Why did it fail? →

Name Link
🔨 Latest commit 7fcbdd1
🔍 Latest deploy log https://app.netlify.com/projects/kleros-v2-university/deploys/68c9a43bfe231d00091d166e

@netlify
Copy link

netlify bot commented Jul 12, 2024

Deploy Preview for kleros-v2-neo ready!

Name Link
🔨 Latest commit 7d7b957
🔍 Latest deploy log https://app.netlify.com/projects/kleros-v2-neo/deploys/68ffa97bd4cf9600082b5237
😎 Deploy Preview https://deploy-preview-1648--kleros-v2-neo.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@netlify
Copy link

netlify bot commented Jul 12, 2024

Deploy Preview for kleros-v2-testnet ready!

Name Link
🔨 Latest commit 7d7b957
🔍 Latest deploy log https://app.netlify.com/projects/kleros-v2-testnet/deploys/68ffa97bc570a100094124ab
😎 Deploy Preview https://deploy-preview-1648--kleros-v2-testnet.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@renovate renovate bot force-pushed the renovate/eslint-plugin-node-replacement branch 5 times, most recently from f14dcda to 433dcb8 Compare July 22, 2024 11:37
@renovate renovate bot force-pushed the renovate/eslint-plugin-node-replacement branch 5 times, most recently from 0546eb2 to a1cd487 Compare July 29, 2024 16:49
@renovate renovate bot force-pushed the renovate/eslint-plugin-node-replacement branch 2 times, most recently from 824fc17 to e7a92f0 Compare August 7, 2024 10:32
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Outside diff range, codebase verification and nitpick comments (1)
eslint-config/package.json (1)

14-14: Ensure proper configuration of eslint-plugin-n in ESLint configuration files.

The replacement of eslint-plugin-node with eslint-plugin-n version ^14.0.0 is present in eslint-config/package.json and yarn.lock. However, there is no evidence of eslint-plugin-n being configured in any ESLint configuration files. Please verify and update the ESLint configuration files to include eslint-plugin-n.

  • eslint-config/package.json
  • yarn.lock
Analysis chain

LGTM! Verify the installation and configuration of eslint-plugin-n.

The replacement of eslint-plugin-node with eslint-plugin-n version ^14.0.0 is approved.

Ensure that the new plugin is correctly installed and configured to maintain linting capabilities.

Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify the installation and configuration of `eslint-plugin-n`.

# Test: Check if `eslint-plugin-n` is installed. Expect: The package should be listed.
npm list eslint-plugin-n

# Test: Check if `.eslintrc.js` contains the configuration for `eslint-plugin-n`. Expect: The configuration should be present.
rg --type js 'eslint-plugin-n' .eslintrc.js

Length of output: 194


Script:

#!/bin/bash
# Description: Search for ESLint configuration files and check for `eslint-plugin-n` configuration.

# Find all potential ESLint configuration files in the repository.
fd -e js -e json -e yaml -e yml -e cjs -e mjs -e ts -e coffee --regex 'eslint'

# Check if any of these files contain the configuration for `eslint-plugin-n`.
fd -e js -e json -e yaml -e yml -e cjs -e mjs -e ts -e coffee --regex 'eslint' --exec rg 'eslint-plugin-n' {}

Length of output: 188


Script:

#!/bin/bash
# Description: Search all files in the repository for `eslint-plugin-n` configuration.

# Check if any files in the repository contain the configuration for `eslint-plugin-n`.
rg 'eslint-plugin-n'

Length of output: 262

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between d1fef37 and e7a92f0.

Files ignored due to path filters (1)
  • yarn.lock is excluded by !**/yarn.lock, !**/*.lock
Files selected for processing (1)
  • eslint-config/package.json (1 hunks)

coderabbitai[bot]
coderabbitai bot previously approved these changes Aug 7, 2024
@renovate renovate bot force-pushed the renovate/eslint-plugin-node-replacement branch 2 times, most recently from 6441627 to 444d4c2 Compare August 7, 2024 11:30
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between e7a92f0 and 444d4c2.

Files ignored due to path filters (1)
  • yarn.lock is excluded by !**/yarn.lock, !**/*.lock
Files selected for processing (1)
  • eslint-config/package.json (1 hunks)
Files skipped from review as they are similar to previous changes (1)
  • eslint-config/package.json

@renovate renovate bot force-pushed the renovate/eslint-plugin-node-replacement branch from 444d4c2 to f40ae42 Compare August 7, 2024 12:04
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 444d4c2 and f40ae42.

Files ignored due to path filters (1)
  • yarn.lock is excluded by !**/yarn.lock, !**/*.lock
Files selected for processing (1)
  • eslint-config/package.json (1 hunks)
Files skipped from review due to trivial changes (1)
  • eslint-config/package.json

@renovate renovate bot force-pushed the renovate/eslint-plugin-node-replacement branch from f40ae42 to e3392d8 Compare August 7, 2024 16:33
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between f40ae42 and e3392d8.

Files ignored due to path filters (1)
  • yarn.lock is excluded by !**/yarn.lock, !**/*.lock
Files selected for processing (1)
  • eslint-config/package.json (1 hunks)
Files skipped from review due to trivial changes (1)
  • eslint-config/package.json

@renovate renovate bot force-pushed the renovate/eslint-plugin-node-replacement branch from e3392d8 to 2fffb97 Compare August 7, 2024 17:18
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between e3392d8 and 2fffb97.

Files ignored due to path filters (1)
  • yarn.lock is excluded by !**/yarn.lock, !**/*.lock
Files selected for processing (1)
  • eslint-config/package.json (1 hunks)
Files skipped from review due to trivial changes (1)
  • eslint-config/package.json

@renovate renovate bot force-pushed the renovate/eslint-plugin-node-replacement branch from 2fffb97 to 04a6b46 Compare August 9, 2024 14:08
@renovate renovate bot force-pushed the renovate/eslint-plugin-node-replacement branch 5 times, most recently from 6e27350 to 21c2817 Compare September 9, 2025 13:55
@renovate renovate bot force-pushed the renovate/eslint-plugin-node-replacement branch 3 times, most recently from 7fcbdd1 to 9f1ca5c Compare September 17, 2025 12:03
@renovate renovate bot force-pushed the renovate/eslint-plugin-node-replacement branch 2 times, most recently from 0b03836 to 949be22 Compare September 24, 2025 16:07
@renovate renovate bot force-pushed the renovate/eslint-plugin-node-replacement branch 4 times, most recently from 0a463aa to 3764b3a Compare October 7, 2025 16:57
@renovate renovate bot force-pushed the renovate/eslint-plugin-node-replacement branch 6 times, most recently from d8b2579 to 74de3ce Compare October 15, 2025 17:03
@renovate renovate bot force-pushed the renovate/eslint-plugin-node-replacement branch 3 times, most recently from 6acff93 to 8c4669e Compare October 17, 2025 13:20
@renovate renovate bot force-pushed the renovate/eslint-plugin-node-replacement branch 4 times, most recently from b8c8009 to 823bb48 Compare October 27, 2025 17:10
@renovate renovate bot force-pushed the renovate/eslint-plugin-node-replacement branch from 823bb48 to 7d7b957 Compare October 27, 2025 17:18
@sonarqubecloud
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants