Skip to content

Commit

Permalink
Regenerate RuboCop to-do file
Browse files Browse the repository at this point in the history
  • Loading branch information
mvz committed Jul 28, 2024
1 parent 9902d06 commit 524924a
Showing 1 changed file with 17 additions and 29 deletions.
46 changes: 17 additions & 29 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -1,76 +1,64 @@
# This configuration was generated by
# `rubocop --auto-gen-config --no-offense-counts --no-auto-gen-timestamp`
# using RuboCop version 1.12.1.
# 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.

# Configuration parameters: IgnoredMethods, CountRepeatedAttributes.
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes.
Metrics/AbcSize:
Max: 47

# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
# IgnoredMethods: refine
Metrics/BlockLength:
Max: 29

# Configuration parameters: IgnoredMethods.
# Configuration parameters: AllowedMethods, AllowedPatterns.
Metrics/CyclomaticComplexity:
Max: 10

# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
Metrics/MethodLength:
Max: 31
Max: 26

# Configuration parameters: CountComments, CountAsOne.
Metrics/ModuleLength:
Max: 160
Max: 158

# Configuration parameters: IgnoredMethods.
# Configuration parameters: AllowedMethods, AllowedPatterns.
Metrics/PerceivedComplexity:
Max: 10

Minitest/AssertionInLifecycleHook:
Exclude:
- 'test/test_default_scopes.rb'
- 'test/test_relations.rb'
- 'test/legacy/default_scopes_test.rb'
- 'test/legacy/relations_test.rb'

Minitest/MultipleAssertions:
Max: 16

# Cop supports --auto-correct.
# This cop supports safe autocorrection (--autocorrect).
Minitest/TestMethodName:
Exclude:
- 'test/test_core.rb'
- 'test/legacy/core_test.rb'

# Configuration parameters: EnforcedStyle, CheckMethodNames, CheckSymbols, AllowedIdentifiers.
# Configuration parameters: EnforcedStyle, CheckMethodNames, CheckSymbols, AllowedIdentifiers, AllowedPatterns.
# SupportedStyles: snake_case, normalcase, non_integer
# AllowedIdentifiers: capture3, iso8601, rfc1123_date, rfc822, rfc2822, rfc3339
# AllowedIdentifiers: capture3, iso8601, rfc1123_date, rfc822, rfc2822, rfc3339, x86_64
Naming/VariableNumber:
Exclude:
- 'test/test_core.rb'
- 'test/test_relations.rb'

Security/Eval:
Exclude:
- 'Rakefile'
- 'test/legacy/core_test.rb'
- 'test/legacy/relations_test.rb'

# Configuration parameters: AllowedConstants.
Style/Documentation:
Exclude:
- 'spec/**/*'
- 'test/**/*'
- 'lib/acts_as_paranoid.rb'
- 'lib/acts_as_paranoid/associations.rb'
- 'lib/acts_as_paranoid/core.rb'
- 'lib/acts_as_paranoid/relation.rb'
- 'lib/acts_as_paranoid/validations.rb'

# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, IgnoredMethods.
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: EnforcedStyle, AllowedMethods, AllowedPatterns.
# SupportedStyles: predicate, comparison
Style/NumericPredicate:
Exclude:
- 'spec/**/*'
- 'lib/acts_as_paranoid/associations.rb'

0 comments on commit 524924a

Please sign in to comment.