fix default

This commit is contained in:
Lucas Gravley 2020-03-30 14:22:52 -05:00
parent 38da61e2ef
commit 623ac57196

View file

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