fixing rules

This commit is contained in:
Lucas Gravley 2020-01-08 07:47:23 -06:00
parent 8ed5e0e4d1
commit d6c5203ef6
2 changed files with 6 additions and 6 deletions

View file

@ -64,7 +64,7 @@ RUN npm -g --no-cache install \
####################
# Run GEM installs #
####################
RUN gem install rubocop
RUN gem install rubocop rubocop-rails
######################
# Install shellcheck #

View file

@ -22,10 +22,6 @@ 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,6 +69,10 @@ Layout/SpaceInsideBlockBraces:
Layout/SpaceInsideHashLiteralBraces:
EnforcedStyle: no_space
# Commonly used screens these days easily fit more than 80 characters.
Layout/LineLength:
Max: 120
################################################################################
########################### Style Rules ########################################
################################################################################
@ -167,7 +167,7 @@ Lint/ShadowingOuterLocalVariable:
# Suppressing exceptions can be perfectly fine, and be it to avoid to
# explicitly type nil into the rescue since that's what you want to return,
# or suppressing LoadError for optional dependencies
Lint/HandleExceptions:
Lint/SuppressedException:
Enabled: false
Lint/AssignmentInCondition: