Skip to content

Conversation

@Olexandr88
Copy link

@Olexandr88 Olexandr88 commented Jan 17, 2026

Summary by CodeRabbit

  • Chores
    • Updated development dependencies.

✏️ Tip: You can customize this high-level summary in your review settings.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Jan 17, 2026

Walkthrough

The pull request removes the devDependency prettier-plugin-solidity from package.json. All other dependencies and configuration remain unchanged. No functional or control flow modifications are present.

Changes

Cohort / File(s) Change Summary
Dependency Removal
package.json
Removed devDependency entry for prettier-plugin-solidity

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

🚥 Pre-merge checks | ✅ 2 | ❌ 1
❌ Failed checks (1 warning)
Check name Status Explanation Resolution
Description check ⚠️ Warning No pull request description was provided, but the template only requires a 'Description of the changes' section which is missing. Add a description explaining why the prettier-plugin-solidity dependency is no longer needed and any impact of its removal.
✅ Passed checks (2 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly summarizes the main change: removing an unused dev dependency from package.json.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

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

@greptile-apps
Copy link
Contributor

greptile-apps bot commented Jan 17, 2026

Greptile Summary

Removed the unused prettier-plugin-solidity package from devDependencies. The project uses solhint for Solidity linting rather than Prettier, and no references to this plugin exist in the codebase or configuration files. This cleanup reduces dependency bloat without affecting functionality.

Confidence Score: 5/5

  • This PR is safe to merge with no risk
  • The change removes an unused dependency with no references in the codebase. The project uses solhint for Solidity formatting, making this plugin unnecessary. No configuration files reference it, and all transitive dependencies are properly cleaned from yarn.lock
  • No files require special attention

Important Files Changed

Filename Overview
package.json Removed unused prettier-plugin-solidity dependency from devDependencies
yarn.lock Removed lockfile entries for prettier-plugin-solidity and its transitive dependencies

Sequence Diagram

sequenceDiagram
    participant Dev as Developer
    participant PM as Package Manager
    participant Repo as Repository
    
    Dev->>Repo: Remove prettier-plugin-solidity from package.json
    Dev->>PM: Run yarn install
    PM->>PM: Remove plugin dependencies from yarn.lock
    PM->>PM: Clean up transitive dependencies
    Note over PM: Removes @solidity-parser/parser@^0.14.0
    Note over PM: Removes emoji-regex@^10.0.0
    Note over PM: Removes solidity-comments-extractor@^0.0.7
    PM->>Repo: Update yarn.lock with cleaned dependencies
    Note over Repo: Dependency tree simplified
    Note over Repo: Solidity formatting still handled by solhint
Loading

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

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant