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 ######################################## ################################################################################