From 623ac571969923f458858608d48f53350a8acc65 Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Mon, 30 Mar 2020 14:22:52 -0500 Subject: [PATCH] fix default --- TEMPLATES/.ruby-lint.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/TEMPLATES/.ruby-lint.yml b/TEMPLATES/.ruby-lint.yml index e39d7c7c..b0d89533 100644 --- a/TEMPLATES/.ruby-lint.yml +++ b/TEMPLATES/.ruby-lint.yml @@ -26,6 +26,10 @@ Security/Open: ############################# Metrics Rules #################################### ################################################################################ +# Commonly used screens these days easily fit more than 80 characters. +Metrics/LineLength: + Max: 120 + # Too short methods lead to extraction of single-use methods, which can make # the code easier to read (by naming things), but can also clutter the class Metrics/MethodLength: @@ -73,10 +77,6 @@ Layout/SpaceInsideBlockBraces: Layout/SpaceInsideHashLiteralBraces: EnforcedStyle: no_space -# Commonly used screens these days easily fit more than 80 characters. -Layout/LineLength: - Max: 120 - ################################################################################ ########################### Style Rules ######################################## ################################################################################