From 565360f2d5a8ebd8b1404cebebbaccb79e625996 Mon Sep 17 00:00:00 2001
From: Chris Wong <lambda.fairy@gmail.com>
Date: Sat, 29 Jul 2017 20:13:20 +1200
Subject: [PATCH] Travis: remove tab check

We should be using a more comprehensive formatting check based on
rustfmt instead.
---
 .travis.yml | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 9f9b00f..d98c900 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -7,11 +7,6 @@ before_script:
   - export PATH=$HOME/.cargo/bin:$PATH
 
 script:
-  - |
-    if [ -n "$TRAVIS_COMMIT_RANGE" ]; then
-      printf 'Checking for tabs in %s\n' "$TRAVIS_COMMIT_RANGE"
-      ! git diff --name-only --diff-filter=ACMR "$TRAVIS_COMMIT_RANGE" | xargs grep $'\t'
-    fi
   - ( cd maud && cargo test --all-features )
   - if command -v cargo-clippy > /dev/null; then ( cd maud && cargo clippy -- -D warnings ); fi
   - ( cd maud_macros && cargo test --all-features )