.rubocop_todo.yml in danger-changelog-0.2.1 vs .rubocop_todo.yml in danger-changelog-0.3.0
- old
+ new
@@ -1,44 +1,81 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
-# on 2016-11-21 18:59:46 -0500 using RuboCop version 0.43.0.
+# on 2018-02-06 12:42:54 -0500 using RuboCop version 0.52.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: 2
+# Cop supports --auto-correct.
+# Configuration parameters: EnforcedStyle.
+# SupportedStyles: auto_detection, squiggly, active_support, powerpack, unindent
+Layout/IndentHeredoc:
+ Exclude:
+ - 'lib/changelog/plugin.rb'
+
# Offense count: 1
-Metrics/AbcSize:
- Max: 19
+Lint/DuplicateMethods:
+ Exclude:
+ - 'lib/changelog/config.rb'
-# Offense count: 40
-# Configuration parameters: AllowHeredoc, AllowURI, URISchemes.
-# URISchemes: http, https
-Metrics/LineLength:
- Max: 254
+# Offense count: 1
+Lint/InterpolationCheck:
+ Exclude:
+ - 'lib/changelog/changelog_line/changelog_header_line.rb'
+# Offense count: 1
+Metrics/AbcSize:
+ Max: 25
+
# Offense count: 3
# Configuration parameters: CountComments.
Metrics/MethodLength:
Max: 14
-# Offense count: 1
+# Offense count: 4
+# Configuration parameters: ExpectMatchingDefinition, Regex, IgnoreExecutableScripts, AllowedAcronyms.
+# AllowedAcronyms: CLI, DSL, ACL, API, ASCII, CPU, CSS, DNS, EOF, GUID, HTML, HTTP, HTTPS, ID, IP, JSON, LHS, QPS, RAM, RHS, RPC, SLA, SMTP, SQL, SSH, TCP, TLS, TTL, UDP, UI, UID, UUID, URI, URL, UTF8, VM, XML, XMPP, XSRF, XSS
+Naming/FileName:
+ Exclude:
+ - 'Dangerfile'
+ - 'Gemfile'
+ - 'Guardfile'
+ - 'danger-changelog.gemspec'
+
+# Offense count: 2
+# Configuration parameters: NamePrefix, NamePrefixBlacklist, NameWhitelist, MethodDefinitionMacros.
+# NamePrefix: is_, has_, have_
+# NamePrefixBlacklist: is_, has_, have_
+# NameWhitelist: is_a?
+# MethodDefinitionMacros: define_method, define_singleton_method
+Naming/PredicateName:
+ Exclude:
+ - 'spec/**/*'
+ - 'lib/changelog/plugin.rb'
+
+# Offense count: 3
Style/Documentation:
Exclude:
- 'spec/**/*'
- 'test/**/*'
+ - 'lib/changelog/config.rb'
- 'lib/changelog/plugin.rb'
# Offense count: 3
Style/DoubleNegation:
Exclude:
- 'lib/changelog/changelog_file.rb'
-# Offense count: 2
-# Configuration parameters: NamePrefix, NamePrefixBlacklist, NameWhitelist.
-# NamePrefix: is_, has_, have_
-# NamePrefixBlacklist: is_, has_, have_
-# NameWhitelist: is_a?
-Style/PredicateName:
+# Offense count: 1
+# Configuration parameters: EnforcedStyle.
+# SupportedStyles: module_function, extend_self
+Style/ModuleFunction:
Exclude:
- - 'spec/**/*'
- - 'lib/changelog/plugin.rb'
+ - 'lib/changelog/config.rb'
+
+# Offense count: 112
+# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
+# URISchemes: http, https
+Metrics/LineLength:
+ Max: 254