From 8b797d1b628903de57bf0eccfbc62498df64f6a4 Mon Sep 17 00:00:00 2001 From: Arvid Andersson Date: Tue, 10 Dec 2024 05:50:00 +0100 Subject: [PATCH] Fix error message about rubocop-rspec_rails Was getting this message, it looks like we need require the rspec rails cops seperatly: Error: `RSpec/Rails` cops have been extracted to the `rubocop-rspec_rails` gem. (obsolete configuration found in .rubocop-https---raw-githubusercontent-com-mynewsdesk-mnd-rubocop-master--rubocop-yml, please update it) --- .rubocop.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.rubocop.yml b/.rubocop.yml index afe5462..13a80fa 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,6 +1,7 @@ require: - rubocop-rails - rubocop-rspec + - rubocop-rspec_rails AllCops: # Exclude automatically generated rails files for easier app:update's etc