From 04eaa802cc8ead1d3212194eea33767ba83f6b51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Tue, 2 Jul 2024 22:59:45 +0200 Subject: [PATCH] Add RSpec/ExpectInLet rubocop rule This rule was added in rubocop-rspec 2.30.0. We were already following it. It might be useful to detect typos during development. --- .rubocop.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index d206e61a8..b93a3d021 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -574,6 +574,9 @@ RSpec/ExampleWording: RSpec/ExcessiveDocstringSpacing: Enabled: true +RSpec/ExpectInLet: + Enabled: true + RSpec/Focus: Enabled: true