.rubocop.yml in lorekeeper-2.6.2 vs .rubocop.yml in lorekeeper-2.6.3
- old
+ new
@@ -1,5 +1,7 @@
+inherit_from: .rubocop_todo.yml
+
require:
- rubocop-performance
inherit_gem:
rubocop-mdsol: rubocop.yml
@@ -10,18 +12,22 @@
# NOTE: Excludes vendor from linting. Needed by GitHub Actions.
# - https://github.com/rubocop/rubocop/issues/9832#issuecomment-873398952
#
- 'vendor/bundle/**/*'
-Lint/ConstantDefinitionInBlock:
- Exclude:
- - 'spec/**/*'
-
Layout/ArgumentAlignment:
EnforcedStyle: with_fixed_indentation
Layout/FirstHashElementIndentation:
EnforcedStyle: consistent
+
+Lint/ConstantDefinitionInBlock:
+ Exclude:
+ - 'spec/**/*'
+
+Lint/StructNewOverride:
+ Exclude:
+ - spec/lib/lorekeeper/backtrace_cleaner_spec.rb
Metrics/ParameterLists:
CountKeywordArgs: false
# TODO: add "EnforcedStyle: allow_single_line" once all rubys are > 3.0 to autocorrect all single-line methods to endless