From ae04a762210deb94a186013fbc6de1ce59615915 Mon Sep 17 00:00:00 2001 From: Bertocq Date: Sun, 7 Jan 2018 02:11:51 +0100 Subject: [PATCH] Enable RSpec/ImplicitExpect cop with convention Used `EnforcedStyle: should` config as there is no `is_expected.to` usage on the codebase. Read about cop at http://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/ImplicitExpect --- .rubocop.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.rubocop.yml b/.rubocop.yml index ae5f06fbe..1676eeb53 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -92,4 +92,8 @@ RSpec/Focus: Enabled: true RSpec/HookArgument: - Enabled: true \ No newline at end of file + Enabled: true + +RSpec/ImplicitExpect: + Enabled: true + EnforcedStyle: should \ No newline at end of file