.rubocop_todo.yml in danger-changelog-0.7.0 vs .rubocop_todo.yml in danger-changelog-0.7.1
- old
+ new
@@ -1,7 +1,133 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
-# on 2020-05-08 17:23:39 -0400 using RuboCop version 0.73.0.
+# on 2024-04-12 18:13:29 UTC using RuboCop version 1.63.1.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
+
+# Offense count: 1
+# Configuration parameters: Severity, Include.
+# Include: **/*.gemspec
+Gemspec/RequiredRubyVersion:
+ Exclude:
+ - 'danger-changelog.gemspec'
+
+# Offense count: 3
+# This cop supports safe autocorrection (--autocorrect).
+# Configuration parameters: Max, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns.
+# URISchemes: http, https
+Layout/LineLength:
+ Exclude:
+ - 'spec/intridea/changelog_spec.rb'
+
+# Offense count: 1
+# Configuration parameters: IgnoreLiteralBranches, IgnoreConstantBranches.
+Lint/DuplicateBranch:
+ Exclude:
+ - 'lib/changelog/plugin.rb'
+
+# Offense count: 2
+Lint/MixedRegexpCaptureTypes:
+ Exclude:
+ - 'lib/changelog/changelog_line/changelog_header_line.rb'
+
+# Offense count: 30
+# Configuration parameters: Prefixes, AllowedPatterns.
+# Prefixes: when, with, without
+RSpec/ContextWording:
+ Exclude:
+ - 'spec/changelog_spec.rb'
+ - 'spec/config_spec.rb'
+ - 'spec/intridea/changelog_entry_line_spec.rb'
+ - 'spec/intridea/changelog_file_spec.rb'
+ - 'spec/intridea/changelog_header_line_spec.rb'
+ - 'spec/intridea/changelog_line_parser_spec.rb'
+ - 'spec/intridea/changelog_spec.rb'
+ - 'spec/keep_a_changelog/changelog_spec.rb'
+
+# Offense count: 9
+# Configuration parameters: CountAsOne.
+RSpec/ExampleLength:
+ Max: 12
+
+# Offense count: 10
+# Configuration parameters: Include, CustomTransform, IgnoreMethods, SpecSuffixOnly.
+# Include: **/*_spec*rb*, **/spec/**/*
+RSpec/FilePath:
+ Exclude:
+ - 'spec/changelog_spec.rb'
+ - 'spec/config_spec.rb'
+ - 'spec/intridea/changelog_entry_line_spec.rb'
+ - 'spec/intridea/changelog_file_spec.rb'
+ - 'spec/intridea/changelog_header_line_spec.rb'
+ - 'spec/intridea/changelog_line_parser_spec.rb'
+ - 'spec/intridea/changelog_placeholder_line_spec.rb'
+ - 'spec/intridea/changelog_spec.rb'
+ - 'spec/keep_a_changelog/changelog_spec.rb'
+ - 'spec/plugin_spec.rb'
+
+# Offense count: 25
+RSpec/MultipleExpectations:
+ Max: 8
+
+# Offense count: 44
+# Configuration parameters: EnforcedStyle, IgnoreSharedExamples.
+# SupportedStyles: always, named_only
+RSpec/NamedSubject:
+ Exclude:
+ - 'spec/changelog_spec.rb'
+ - 'spec/intridea/changelog_file_spec.rb'
+ - 'spec/intridea/changelog_spec.rb'
+ - 'spec/keep_a_changelog/changelog_spec.rb'
+ - 'spec/plugin_spec.rb'
+
+# Offense count: 32
+# Configuration parameters: AllowedGroups.
+RSpec/NestedGroups:
+ Max: 7
+
+# Offense count: 2
+RSpec/RepeatedExampleGroupBody:
+ Exclude:
+ - 'spec/intridea/changelog_header_line_spec.rb'
+
+# Offense count: 2
+RSpec/RepeatedExampleGroupDescription:
+ Exclude:
+ - 'spec/intridea/changelog_header_line_spec.rb'
+
+# Offense count: 4
+RSpec/RepeatedIncludeExample:
+ Exclude:
+ - 'spec/intridea/changelog_entry_line_spec.rb'
+ - 'spec/intridea/changelog_header_line_spec.rb'
+
+# Offense count: 10
+# Configuration parameters: Include, CustomTransform, IgnoreMethods, IgnoreMetadata.
+# Include: **/*_spec.rb
+RSpec/SpecFilePathFormat:
+ Exclude:
+ - '**/spec/routing/**/*'
+ - 'spec/changelog_spec.rb'
+ - 'spec/config_spec.rb'
+ - 'spec/intridea/changelog_entry_line_spec.rb'
+ - 'spec/intridea/changelog_file_spec.rb'
+ - 'spec/intridea/changelog_header_line_spec.rb'
+ - 'spec/intridea/changelog_line_parser_spec.rb'
+ - 'spec/intridea/changelog_placeholder_line_spec.rb'
+ - 'spec/intridea/changelog_spec.rb'
+ - 'spec/keep_a_changelog/changelog_spec.rb'
+ - 'spec/plugin_spec.rb'
+
+# Offense count: 1
+# Configuration parameters: IgnoreNameless, IgnoreSymbolicNames.
+RSpec/VerifiedDoubles:
+ Exclude:
+ - 'spec/intridea/changelog_entry_line_spec.rb'
+
+# Offense count: 1
+# This cop supports safe autocorrection (--autocorrect).
+Rake/Desc:
+ Exclude:
+ - 'Rakefile'