From c8cb454ba9098569ec4b39702aa0291b0621a747 Mon Sep 17 00:00:00 2001 From: Alexander Fisher Date: Tue, 19 Oct 2021 13:56:40 +0100 Subject: [PATCH] Disable RSpec/ContextWording and Naming/HeredocDelimiterNaming It was decided that leaving these enabled word create too much unnecessary work. --- rubocop.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/rubocop.yml b/rubocop.yml index 89ebd89..1804007 100644 --- a/rubocop.yml +++ b/rubocop.yml @@ -547,6 +547,12 @@ Style/FormatStringToken: RSpec/FilePath: Enabled: false +# Leaving these enabled creates too much busy work +RSpec/ContextWording: + Enabled: false +Naming/HeredocDelimiterNaming: + Enabled: false + # New cops available after rubocop upgrade Gemspec/DateAssignment: # (new in 1.10) Enabled: true