From 4b3bc69993cbffd87fc2e98ab812ab52ec4dbd08 Mon Sep 17 00:00:00 2001 From: Michael Moll Date: Mon, 10 Sep 2018 14:53:32 +0200 Subject: [PATCH] Fixes #19869 - Disable Style/LineEndConcatenation cop --- .rubocop.yml | 4 ++++ .rubocop_todo.yml | 5 ----- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index fae07ff0dc5..c4827008af4 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -95,3 +95,7 @@ Layout/AlignHash: Layout/AlignParameters: Enabled: false + +# disabled until we can configure "+" as concat sign +Style/LineEndConcatenation: + Enabled: false diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 153b28c9ca6..d0d7bc04ed5 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -385,11 +385,6 @@ Style/IdenticalConditionalBranches: Style/IfInsideElse: Enabled: false -# Offense count: 93 -# Cop supports --auto-correct. -Style/LineEndConcatenation: - Enabled: false - # Offense count: 62 # Cop supports --auto-correct. Style/MethodCallWithoutArgsParentheses: