diff options
Diffstat (limited to 'tools/syntax')
-rwxr-xr-x | tools/syntax/CheckTabs.sh | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tools/syntax/CheckTabs.sh b/tools/syntax/CheckTabs.sh deleted file mode 100755 index 0c11c49..0000000 --- a/tools/syntax/CheckTabs.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env sh - -FAILING_FILES=`grep -r "^ " * | grep -E "^(\w|/)+\.(cpp|h):" | grep -E -v "^(src/(Swift/)?)?3rdParty" | grep -v "^.*moc_" | sed -e "s/:.*//" | uniq` - -if [ "$FAILING_FILES" ]; then - echo "ERROR: Found whitespace instead of tabs in the following files:" - echo "$FAILING_FILES" -fi |