From 08433a721b28dadd77feebee63f58774cc0d1523 Mon Sep 17 00:00:00 2001 From: Yury Ignatov Date: Fri, 2 Oct 2015 16:35:44 +0300 Subject: [PATCH] set rubocop max class length to 200 lines to make it happy --- .rubocop.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.rubocop.yml b/.rubocop.yml index 7210eeb..6fd980b 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -9,6 +9,6 @@ Metrics/LineLength: Metrics/MethodLength: Enabled: false Metrics/ClassLength: - Max: 153 + Max: 200 Metrics/ParameterLists: Enabled: false