Skip to content

Commit

Permalink
Rubocop todo lambda parens
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoyne committed Dec 4, 2023
1 parent 1c5d67f commit fa2f6dc
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2023-02-23 15:26:06 UTC using RuboCop version 1.45.1.
# on 2023-12-04 13:29:40 UTC using RuboCop version 1.58.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
Expand Down Expand Up @@ -31,7 +31,7 @@ Naming/MethodParameterName:
# Offense count: 16
# 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:
- 'spec/features/bulk_resource_delete_spec.rb'
Expand Down Expand Up @@ -65,7 +65,7 @@ RSpec/StubbedMock:
- 'spec/controllers/image_proxy_controller_spec.rb'
- 'spec/presenters/dlme_thumbnail_presenter_spec.rb'

# Offense count: 27
# Offense count: 30
# Configuration parameters: IgnoreNameless, IgnoreSymbolicNames.
RSpec/VerifiedDoubles:
Exclude:
Expand All @@ -82,6 +82,12 @@ Style/HashAsLastArrayItem:
Exclude:
- 'app/controllers/concerns/multilingual_locale_aware_field.rb'

# Offense count: 1
# This cop supports safe autocorrection (--autocorrect).
Style/RedundantParentheses:
Exclude:
- 'app/controllers/catalog_controller.rb'

# Offense count: 3
# This cop supports unsafe autocorrection (--autocorrect-all).
Style/SingleArgumentDig:
Expand Down

0 comments on commit fa2f6dc

Please sign in to comment.