Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump rubocop lang version and add new cops #1158

Merged
merged 1 commit into from
May 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ require:
- rubocop-rspec_rails

AllCops:
TargetRubyVersion: 3.1
TargetRubyVersion: 3.2
DisplayCopNames: true
Exclude:
- "Gemfile"
Expand Down Expand Up @@ -578,3 +578,23 @@ Performance/StringIdentifierArgument: # new in 1.13
Enabled: true
Performance/Sum: # new in 1.8
Enabled: true
Style/MapIntoArray: # new in 1.63
Enabled: true
Rails/WhereRange: # new in 2.25
Enabled: true
Capybara/RedundantWithinFind: # new in 2.20
Enabled: true
FactoryBot/ExcessiveCreateList: # new in 2.25
Enabled: true
RSpec/EmptyOutput: # new in 2.29
Enabled: true
RSpec/IsExpectedSpecify: # new in 2.27
Enabled: true
RSpec/RedundantPredicateMatcher: # new in 2.26
Enabled: true
RSpec/RemoveConst: # new in 2.26
Enabled: true
RSpec/RepeatedSubjectCall: # new in 2.27
Enabled: true
RSpec/UndescriptiveLiteralsDescription: # new in 2.29
Enabled: true
Loading