From 4b22a4547c93778ac6adc5ce60e1185312e2510d Mon Sep 17 00:00:00 2001 From: Cody Borders Date: Mon, 3 Apr 2017 15:18:04 -0600 Subject: [PATCH] Adds Style/Tab cop to rubocop.yml --- .rubocop.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index f196c6a6..389634f5 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -100,6 +100,10 @@ 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