From d5c873d549f1aac10d1c310dfeb02b8aa43901ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonne=20Ha=C3=9F?= Date: Thu, 4 Jun 2015 21:23:31 +0200 Subject: [PATCH] Disable Style/MultilineOperationIndentation [ci skip] --- .rubocop.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index 2e55fe82e..7cbf4af9d 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -66,6 +66,11 @@ Lint/AssignmentInCondition: Style/RaiseArgs: Enabled: false +# Indenting the chained dots beneath each other is not supported by this cop, +# see https://github.com/bbatsov/rubocop/issues/1633 +Style/MultilineOperationIndentation: + Enabled: false + # Fail is an alias of raise. Avoid aliases, it's more cognitive load for no gain. # The argument that fail should be used to abort the program is wrong too, # there's Kernel#abort for that. -- GitLab