From 45c761fd90367c09f392787458ed78453160eb38 Mon Sep 17 00:00:00 2001 From: Ivan Giuliani Date: Tue, 8 Sep 2020 14:30:23 +0100 Subject: [PATCH] Disable Style/CombinableLoops There aren't many breaks but looks like all the cases of this cop breaking are not things we should be fixing (i.e. run all the validations before sending all the money). Makes sense to just disable this by default. --- rubocop.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rubocop.yml b/rubocop.yml index 8466190..939cbac 100644 --- a/rubocop.yml +++ b/rubocop.yml @@ -304,7 +304,7 @@ Style/StringConcatenation: Enabled: false Style/CombinableLoops: - Enabled: true + Enabled: false Style/KeywordParametersOrder: Enabled: true