Skip to content

Commit

Permalink
Add rspec style rules to the rubocop configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrmurach committed Mar 28, 2024
1 parent 0ec27a1 commit 7a9ca27
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
require:
- rubocop-performance
- rubocop-rake
- rubocop-rspec

AllCops:
NewCops: enable
Expand Down Expand Up @@ -36,6 +37,28 @@ Naming/FileName:
Exclude:
- "lib/tty-link.rb"

RSpec/BeEq:
Enabled: false

RSpec/DescribedClass:
Exclude:
- "spec/perf/**/*"

RSpec/ExampleLength:
Enabled: false

RSpec/FilePath:
Enabled: false

RSpec/MultipleExpectations:
Enabled: false

RSpec/SpecFilePathFormat:
Enabled: false

RSpec/VerifiedDoubles:
Enabled: false

Style/BlockDelimiters:
Enabled: false

Expand Down

0 comments on commit 7a9ca27

Please sign in to comment.