From c2e918f7489d4d5e21ef8a30cf7b4a44a3121170 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Wed, 15 Jul 2020 22:44:17 -0700 Subject: [PATCH] Avoid warning running cookstyle due to Layout/HeredocIndentation When Ruby 2.3 support was dropped in RuboCop they changed the Layout/HeredocIndentation to only support squiggly so setting this just causes it to warn. Just enable it instead. See https://github.com/rubocop-hq/rubocop/pull/8056 Signed-off-by: Tim Smith --- .rubocop.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.rubocop.yml b/.rubocop.yml index d7fa0e5f7..649fc64dc 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -10,7 +10,7 @@ Layout/ExtraSpacing: AllowForAlignment: true Layout/HeredocIndentation: - EnforcedStyle: squiggly + Enabled: true Naming/MethodParameterName: Enabled: false -- 2.43.2