From 5b48f771e75ec2bb8d9f576f25e5181d7f2e2c3b Mon Sep 17 00:00:00 2001 From: Matthew McGarvey Date: Mon, 30 Dec 2019 08:22:27 -0600 Subject: [PATCH] update rubocop configuration around line length (#100) --- default.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/default.yml b/default.yml index 4de6e97..8dde80f 100644 --- a/default.yml +++ b/default.yml @@ -9,6 +9,13 @@ AllCops: Layout/AccessModifierIndentation: EnforcedStyle: outdent +Layout/LineLength: + Max: 120 + Exclude: + - config/routes.rb + - config/routes/* + - db/migrate/* + Metrics/AbcSize: Exclude: - spec/**/* @@ -34,13 +41,6 @@ Metrics/CyclomaticComplexity: - spec/**/* - test/**/* -Metrics/LineLength: - Max: 120 - Exclude: - - config/routes.rb - - config/routes/* - - db/migrate/* - Metrics/MethodLength: Exclude: - db/migrate/*