diff --git a/.rubocop.yml b/.rubocop.yml index f49c992..066ea5e 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -17,6 +17,9 @@ Style/Documentation: Metrics/LineLength: Enabled: false +# Empty method definitions over more than one line is ok +Style/EmptyMethod: + Enabled: false # Due to legacy codebase # - Globals are used liberally @@ -29,6 +32,8 @@ Metrics/PerceivedComplexity: Enabled: false Metrics/CyclomaticComplexity: Enabled: false +Metrics/BlockNesting: + Enabled: false # - Long Methods, Classes, Blocks, and Modules Metrics/MethodLength: Enabled: false