From eba6573af54751ba6f6e562e7661c38fa448cdcb Mon Sep 17 00:00:00 2001 From: Devon Blandin Date: Tue, 8 Mar 2016 23:00:44 -0500 Subject: [PATCH] Disallow extra spacing for token alignment ```ruby # bad something = 1 another = 2 # good something = 1 another = 2 ``` --- rubocop.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/rubocop.yml b/rubocop.yml index fc5cf25..836ea0c 100644 --- a/rubocop.yml +++ b/rubocop.yml @@ -81,7 +81,11 @@ Style/Next: # We think it's OK to use the "extend self" module pattern Style/ModuleFunction: Enabled: false - + +# Disallow extra spacing for token alignment +Style/ExtraSpacing: + AllowForAlignment: false + ################################################################################ # Performance ################################################################################