diff --git a/.rubocop.yml b/.rubocop.yml index c0b10250..f044de54 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -8,7 +8,7 @@ require: - rubocop-rspec_rails AllCops: - TargetRubyVersion: 3.1 + TargetRubyVersion: 3.2 DisplayCopNames: true Exclude: - "Gemfile" @@ -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