From 84287425369b4384fce142942d45c1cf428ea5c4 Mon Sep 17 00:00:00 2001 From: Denver Gingerich Date: Mon, 10 Apr 2017 13:21:47 +0000 Subject: [PATCH] relax some RuboCop restrictions; missed in 349d8b0 --- .rubocop.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index f03ac690ad7d47a58257e7950772fa01ce2f5c37..c69aa4120c7f7b7ba8ed3dc0c41df33b0a1d3dbf 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -14,7 +14,7 @@ Lint/RescueException: Enabled: false Metrics/AbcSize: - Max: 111 + Max: 134 Metrics/BlockLength: Max: 200 @@ -26,7 +26,7 @@ Metrics/ClassLength: Max: 200 Metrics/CyclomaticComplexity: - Max: 20 + Max: 22 Metrics/MethodLength: Max: 200 @@ -38,7 +38,7 @@ Metrics/ParameterLists: Max: 7 Metrics/PerceivedComplexity: - Max: 20 + Max: 22 Style/AndOr: Enabled: false @@ -69,6 +69,9 @@ Style/MultilineMethodCallBraceLayout: Style/MultilineOperationIndentation: Enabled: false +Style/MultilineTernaryOperator: + Enabled: false + Style/Next: Enabled: false