Conversation
2028fa6 to
a6d2daa
Compare
This PR makes RuboCop Rake support RuboCop's Plugin feature. It replaces the ad-hoc `Inject` with RuboCop plugins introduced in RuboCop 1.72. Additionally, since RuboCop already requires Ruby 2.7 or higher as its runtime, the `required_ruby_version` will be updated to 2.7. Follow-up rubocop/rubocop#13792
a6d2daa to
658715c
Compare
koic
added a commit
to rubocop/rubocop
that referenced
this pull request
Feb 15, 2025
This commit uses plugified RuboCop Rake (0.7.0) for development and suppresses the following warning: ```console $ bundle exec rubocop rubocop-rake extension supports plugin, specify `plugins: rubocop-rake` instead of `require: rubocop-rake` in /Users/koic/src/github.com/rubocop/rubocop/.rubocop.yml. For more information, see https://docs.rubocop.org/rubocop/plugin_migration_guide.html. ``` Follow-up to rubocop/rubocop-rake#58.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR makes RuboCop Rake support RuboCop's Plugin feature.
It replaces the ad-hoc
Injectwith RuboCop plugins introduced in RuboCop 1.72. Additionally, since RuboCop already requires Ruby 2.7 or higher as its runtime, therequired_ruby_versionwill be updated to 2.7.Follow-up rubocop/rubocop#13792