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

[review] fix: RSpecRails -> RSpec/Rails #177

Merged
merged 1 commit into from
Sep 4, 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
12 changes: 6 additions & 6 deletions rails/rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ Rails/EnumSyntax:
RSpec/IdenticalEqualityAssertion: # (new in 2.4)
Enabled: true
# https://docs.rubocop.org/rubocop/cops_rspecrails.html#rspecrailsavoidsetuphook
RSpecRails/AvoidSetupHook: # (new in 2.4)
RSpec/Rails/AvoidSetupHook: # (new in 2.4)
Enabled: true
# https://docs.rubocop.org/rubocop-rspec/cops_rspec.html#rspecexcessivedocstringspacing
RSpec/ExcessiveDocstringSpacing: # new in 2.5
Expand Down Expand Up @@ -475,7 +475,7 @@ RSpec/ChangeByZero: # new in 2.11.0
Capybara/SpecificMatcher: # new in 2.12
Enabled: true
# https://docs.rubocop.org/rubocop/cops_rspecrails.html#rspecrailshavehttpstatus
RSpecRails/HaveHttpStatus: # new in 2.12
RSpec/Rails/HaveHttpStatus: # new in 2.12
Enabled: true
# https://docs.rubocop.org/rubocop-rspec/cops_rspec.html#rspecclasscheck
RSpec/ClassCheck: # new in 2.13
Expand All @@ -499,7 +499,7 @@ Capybara/SpecificActions: # new in 2.14
FactoryBot/ConsistentParenthesesStyle: # new in 2.14
Enabled: false
# https://docs.rubocop.org/rubocop/cops_rspecrails.html#rspecrailsinferredspectype
RSpecRails/InferredSpecType: # new in 2.14
RSpec/Rails/InferredSpecType: # new in 2.14
Enabled: false
# https://docs.rubocop.org/rubocop-rspec/cops_rspec.html#rspecduplicatedmetadata
RSpec/DuplicatedMetadata: # new in 2.16
Expand All @@ -514,7 +514,7 @@ FactoryBot/FactoryNameStyle: # new in 2.16
Capybara/MatchStyle: # new in 2.17
Enabled: true
# https://docs.rubocop.org/rubocop/cops_rspecrails.html#rspecrailsminitestassertions
RSpecRails/MinitestAssertions: # new in 2.17
RSpec/Rails/MinitestAssertions: # new in 2.17
Enabled: true
# https://docs.rubocop.org/rubocop-rspec/cops_rspec.html#rspecredundantaround
RSpec/RedundantAround: # new in 2.19
Expand All @@ -523,7 +523,7 @@ RSpec/RedundantAround: # new in 2.19
RSpec/SkipBlockInsideExample: # new in 2.19
Enabled: true
# https://docs.rubocop.org/rubocop/cops_rspecrails.html#rspecrailstravelaround
RSpecRails/TravelAround: # new in 2.19
RSpec/Rails/TravelAround: # new in 2.19
Enabled: true
# https://docs.rubocop.org/rubocop-rspec/cops_rspec.html#rspecbeempty
RSpec/BeEmpty: # new in 2.20
Expand All @@ -541,7 +541,7 @@ RSpec/MatchArray: # new in 2.19
RSpec/ReceiveMessages: # new in 2.23
Enabled: false
# https://docs.rubocop.org/rubocop/cops_rspecrails.html#rspecrailsnegationbevalid
RSpecRails/NegationBeValid: # new in 2.23
RSpec/Rails/NegationBeValid: # new in 2.23
Enabled: true
# https://docs.rubocop.org/rubocop-rspec/cops_rspec.html#rspecemptymetadata
RSpec/EmptyMetadata: # new in 2.24
Expand Down