Explicitly disable the RSpec/BeEql cop

This is a little too picky, even for us.
This commit is contained in:
Robert Speicher 2016-11-30 15:07:42 +08:00
parent 58131ac93c
commit cb8d031e95
2 changed files with 4 additions and 4 deletions

View File

@ -769,6 +769,10 @@ Rails/ScopeArgs:
RSpec/AnyInstance: RSpec/AnyInstance:
Enabled: false Enabled: false
# Check for expectations where `be(...)` can replace `eql(...)`.
RSpec/BeEql:
Enabled: false
# Check that the first argument to the top level describe is the tested class or # Check that the first argument to the top level describe is the tested class or
# module. # module.
RSpec/DescribeClass: RSpec/DescribeClass:

View File

@ -80,10 +80,6 @@ Performance/RedundantMatch:
Performance/RedundantMerge: Performance/RedundantMerge:
Enabled: false Enabled: false
# Offense count: 7
RSpec/BeEql:
Enabled: false
# Offense count: 15 # Offense count: 15
# Configuration parameters: CustomIncludeMethods. # Configuration parameters: CustomIncludeMethods.
RSpec/EmptyExampleGroup: RSpec/EmptyExampleGroup: