summaryrefslogtreecommitdiff
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorAndré Luis Leal Cardoso Junior <andrehjr@gmail.com>2021-12-27 12:06:50 -0300
committerAndré Luis Leal Cardoso Junior <andrehjr@gmail.com>2021-12-27 12:06:50 -0300
commitd1aee5999404ac4b24c34e7e94530bc1ad910b73 (patch)
tree05b7aa6f667c89d03ea6ab6b0fe0947e6f365e71 /.rubocop.yml
parentc5274cdcba79a2be0dfbf7b757bd73f12e2688e0 (diff)
downloadpry-d1aee5999404ac4b24c34e7e94530bc1ad910b73.tar.gz
Prevents Ruby 3.1 incompatibility error. You can enable this cop when Ruby 2.4 support is dropped.
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 7e302463..c86553e5 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -1,5 +1,10 @@
inherit_from: .rubocop_todo.yml
+# Prevents Ruby 3.1 incompatibility error. You can enable this cop when Ruby 2.4 support is dropped.
+# See https://github.com/rubocop/rubocop/issues/10258
+Layout/BlockAlignment:
+ Enabled: false
+
Style/NumericPredicate:
Enabled: false