.rubocop.yml in reek-5.3.1 vs .rubocop.yml in reek-5.3.2

- old
+ new

@@ -22,14 +22,10 @@ # Require empty lines between defs, except for one-line defs Layout/EmptyLineBetweenDefs: AllowAdjacentOneLineDefs: true -# Use active_support's strip_heredoc to indent heredocs -Layout/IndentHeredoc: - EnforcedStyle: active_support - # Always put the closing brace on the last line Layout/MultilineMethodCallBraceLayout: EnforcedStyle: same_line # Indent one level for follow-up lines @@ -63,14 +59,9 @@ Max: 120 # Keyword arguments make long parameter lists readable Metrics/ParameterLists: CountKeywordArgs: false - -# EOS is a fine name to use in our specs -Naming/HeredocDelimiterNaming: - Exclude: - - 'spec/**/*' # These files do not test classes or modules RSpec/DescribeClass: Exclude: - 'spec/quality/*_spec.rb'