Added tabs code check.

This commit is contained in:
Garth Minette
2021-06-22 19:44:47 -07:00
parent 2fe2f0708a
commit 5b4b5e3439
6 changed files with 31 additions and 159 deletions

9
scripts/check_for_tabs.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
if grep -H -n '\t' *.scad ; then
echo "Tabs found in source code." 2>&1
exit 1
fi
exit 0