From 409492ce33e9abc69e4f8c4a8cefa5cc05f220c3 Mon Sep 17 00:00:00 2001 From: Maikel Linke Date: Thu, 2 May 2024 16:34:11 +1000 Subject: [PATCH] Explicitely require all rubocop extensions I think that rspec-rails loaded the other extensions already but Rubocop was suggesting these extensions to be loaded as well. The alternative is to disable suggestions of new extensions but that could hide new shiny tools when they become available. --- .rubocop.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index 937a2acf17..93d9f9bd81 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -5,8 +5,12 @@ # The configuration is split into three files. Look into those files for more details. # require: + - rubocop-capybara + - rubocop-factory_bot - rubocop-rails - rubocop-rspec + - rubocop-rspec_rails + inherit_from: # The automatically generated todo list to ignore all current violations.