Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2016-11-30 10:07:42 +0300
committerRobert Speicher <rspeicher@gmail.com>2017-02-11 00:44:13 +0300
commitcb8d031e959588c02efcd245ba914c07dab7f993 (patch)
tree7323781b09fb6f09cd51b1f75f9f0fc2aa5ea598 /.rubocop.yml
parent58131ac93c2a7c784c8c4f9025ef250eac4e1fa1 (diff)
Explicitly disable the RSpec/BeEql cop
This is a little too picky, even for us.
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 88345373a5b..e73597adca2 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -769,6 +769,10 @@ Rails/ScopeArgs:
RSpec/AnyInstance:
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
# module.
RSpec/DescribeClass: