From 7e54771f5233af85e2786cc75ad3c6b43c70ce0a Mon Sep 17 00:00:00 2001 From: Cody Borders Date: Wed, 5 Apr 2017 15:43:12 -0600 Subject: [PATCH] Moves style/tab cop to proper line Cops should be in alphabetical order so I moved this to line 91 where it belongs. --- .rubocop.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index 389634f5..04293da0 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -88,6 +88,10 @@ Style/SpaceAroundOperators: Style/StringLiterals: Enabled: true +# This cop checks for tabs where spaces should be used. +Style/Tab: + Enabled: true + # Avoid trailing blank lines Style/TrailingBlankLines: Enabled: true @@ -100,10 +104,6 @@ Style/TrailingWhitespace: Style/ZeroLengthPredicate: Enabled: true -# This cop checks for tabs where spaces should be used. -Style/Tab: - Enabled: true - #################### Metrics ############################### # Avoid deep blocks nesting