diff --git a/.rubocop.yml b/.rubocop.yml
index 66fe0faacaf84a66684976173ddb72eb53dd9eee..a2895b1d78e0a1fad63667286584ad254015e6e2 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -105,6 +105,11 @@ Style/SpaceInsideHashLiteralBraces:
 Style/BlockDelimiters:
   Enabled: false
 
+# Enforcing -> would be nice, but not at the cost of enforcing lambda { } for
+# multiline lambdas.
+Style/Lambda:
+  Enabled: false
+
 # do / end blocks should be used for side effects,
 # methods that run a block for side effects and have
 # a useful return value are rare, assign the return