From 3ebc64a71dd885d1fea615dae53e658c9cee74ed Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 27 Jan 2021 15:04:35 +0000 Subject: [PATCH] rubocop_rspec: don't autocorrect focus. It's annoying to have these autoremoved. --- Library/.rubocop_rspec.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Library/.rubocop_rspec.yml b/Library/.rubocop_rspec.yml index 6b72706d06..5a47d33451 100644 --- a/Library/.rubocop_rspec.yml +++ b/Library/.rubocop_rspec.yml @@ -35,3 +35,7 @@ RSpec/NestedGroups: Max: 5 RSpec/MultipleMemoizedHelpers: Max: 12 + +# Annoying to have these autoremoved. +RSpec/Focus: + AutoCorrect: false