summaryrefslogtreecommitdiff
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorKyrylo Silin <silin@kyrylo.org>2019-03-23 20:00:33 +0200
committerKyrylo Silin <silin@kyrylo.org>2019-03-23 20:03:52 +0200
commit8d97eb84f19660e324a706e1640d2e1438108bea (patch)
treecca817002bfd14f1c9c48a3bca7ec7baf7f0a6a0 /.rubocop.yml
parent1a20b22984216492fb60fb0d6d1dbac6ce92cfc9 (diff)
downloadpry-8d97eb84f19660e324a706e1640d2e1438108bea.tar.gz
rubocop: disable Style/DoubleNegation
This cop makes sense to me, however a lot of our code has offences that are not fixable on the same level. To avoid them we'd need to redesign API of some classes, which isn't worth it.
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index d47eb00e..c2f52fb6 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -55,3 +55,6 @@ Metrics/LineLength:
Bundler/OrderedGems:
Enabled: false
+
+Style/DoubleNegation:
+ Enabled: false