Skip to content

Commit

Permalink
Regenerate TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
CloCkWeRX committed Jul 13, 2024
1 parent acc4748 commit 487f909
Showing 1 changed file with 78 additions and 14 deletions.
92 changes: 78 additions & 14 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -1,45 +1,77 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2021-05-22 02:53:00 +0930 using RuboCop version 0.62.0.
# on 2024-07-13 08:41:03 UTC using RuboCop version 1.65.0.
# 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: 7
# Offense count: 1
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: TreatCommentsAsGroupSeparators, ConsiderPunctuation, Include.
# Include: **/*.gemfile, **/Gemfile, **/gems.rb
Bundler/OrderedGems:
Exclude:
- 'Gemfile'

# Offense count: 1
# Configuration parameters: Severity, Include.
# Include: **/*.gemspec
Gemspec/RequiredRubyVersion:
Exclude:
- 'acts_as_commentable.gemspec'

# Offense count: 2
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: AllowDoxygenCommentStyle, AllowGemfileRubyComment.
Layout/LeadingCommentSpace:
Exclude:
- 'lib/commentable_methods.rb'

# Offense count: 1
# This cop supports safe autocorrection (--autocorrect).
Lint/SendWithMixinArgument:
Exclude:
- 'lib/commentable_methods.rb'

# Offense count: 5
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes.
Metrics/AbcSize:
Max: 42
Max: 38

# Offense count: 1
# Configuration parameters: CountComments.
# Configuration parameters: CountComments, CountAsOne.
Metrics/ClassLength:
Max: 134
Max: 133

# Offense count: 1
# Configuration parameters: AllowedMethods, AllowedPatterns.
Metrics/CyclomaticComplexity:
Max: 8
Max: 12

# Offense count: 7
# Configuration parameters: CountComments, ExcludedMethods.
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
Metrics/MethodLength:
Max: 35

# Offense count: 1
# Configuration parameters: AllowedMethods, AllowedPatterns.
Metrics/PerceivedComplexity:
Max: 9
Max: 13

# Offense count: 1
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: EnforcedStyleForLeadingUnderscores.
# SupportedStylesForLeadingUnderscores: disallowed, required, optional
Naming/MemoizedInstanceVariableName:
Exclude:
- 'lib/generators/comment/comment_generator.rb'

# Offense count: 2
# Configuration parameters: NamePrefix, NamePrefixBlacklist, NameWhitelist, MethodDefinitionMacros.
# Configuration parameters: NamePrefix, ForbiddenPrefixes, AllowedMethods, MethodDefinitionMacros.
# NamePrefix: is_, has_, have_
# NamePrefixBlacklist: is_, has_, have_
# NameWhitelist: is_a?
# ForbiddenPrefixes: is_, has_, have_
# AllowedMethods: is_a?
# MethodDefinitionMacros: define_method, define_singleton_method
Naming/PredicateName:
Exclude:
Expand All @@ -48,6 +80,7 @@ Naming/PredicateName:
- 'lib/commentable_methods.rb'

# Offense count: 6
# Configuration parameters: AllowedConstants.
Style/Documentation:
Exclude:
- 'spec/**/*'
Expand All @@ -59,12 +92,43 @@ Style/Documentation:
- 'lib/generators/comment/templates/create_comments.rb'

# Offense count: 1
# This cop supports safe autocorrection (--autocorrect).
Style/EvalWithLocation:
Exclude:
- 'lib/commentable_methods.rb'

# Offense count: 63
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# Offense count: 15
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: EnforcedStyle.
# SupportedStyles: always, always_true, never
Style/FrozenStringLiteralComment:
Exclude:
- 'Gemfile'
- 'Rakefile'
- 'acts_as_commentable.gemspec'
- 'init.rb'
- 'install.rb'
- 'lib/acts_as_commentable.rb'
- 'lib/comment_methods.rb'
- 'lib/commentable_methods.rb'
- 'lib/generators/comment/comment_generator.rb'
- 'lib/generators/comment/templates/comment.rb'
- 'lib/generators/comment/templates/create_comments.rb'
- 'rails/init.rb'
- 'test/acts_as_commentable_test.rb'
- 'test/models.rb'
- 'test/schema.rb'

# Offense count: 5
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: Mode.
Style/StringConcatenation:
Exclude:
- 'test/acts_as_commentable_test.rb'

# Offense count: 4
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns.
# URISchemes: http, https
Metrics/LineLength:
Layout/LineLength:
Max: 414

0 comments on commit 487f909

Please sign in to comment.