summaryrefslogtreecommitdiff
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2016-05-25 12:59:29 +0200
committerAzul <azul@riseup.net>2016-05-25 12:59:57 +0200
commit80e8ce856c8b9305327db1038f356b2b62da10bb (patch)
tree2bd4f0643270c633c3b58d7e5bfd622146f45a33 /.rubocop.yml
parent62e27158a4fda768377df17430d154c2aae03f5d (diff)
rubocop: disable EndAlignment cop permanently
we use end; end to end nested modules.
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 503bc17..652bfba 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -8,3 +8,7 @@ Style/HashSyntax:
Lint/DeprecatedClassMethods:
Enabled: true
+
+# complains about our nested module end; end style
+Lint/EndAlignment:
+ Enabled: false