From 902118cbde5be972241ef49ebb60d6f7c73c7c4a Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Thu, 6 Aug 2026 00:48:17 +0900 Subject: [PATCH] Suppress RuboCop extension suggestions This PR suppresses the following information: ```console $ bundle exec rubocop (snip) Tip: Based on detected gems, the following RuboCop extension libraries might be helpful: * rubocop-i18n (https://rubygems.org/gems/rubocop-i18n) You can opt out of this message by adding the following to your config (see https://docs.rubocop.org/rubocop/plugins.html#plugin-suggestions for more options): AllCops: SuggestExtensions: false ``` There's no need to introduce a third-party RuboCop extension unless there's a specific need. --- .rubocop.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.rubocop.yml b/.rubocop.yml index f0c764e3..aefa67a2 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -7,6 +7,7 @@ plugins: AllCops: TargetRubyVersion: 2.7 + SuggestExtensions: false Gemspec/DevelopmentDependencies: Enabled: true