-
Notifications
You must be signed in to change notification settings - Fork 283
/
Copy pathlint.sh
executable file
·43 lines (35 loc) · 1.09 KB
/
lint.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
cd src
echo "Linting in : $(pwd)"
PRERR_COUNT=$(git grep prerr_endline | wc -l)
PRINT_COUNT=$(git grep print_endline | wc -l)
PRINTF_COUNT=$(git grep Printf.printf | wc -l)
MAGENTA_COUNT=$(git grep magenta | wc -l)
echo "prrerr_endline count: $PRERR_COUNT"
echo "print_endline count: $PRINT_COUNT"
echo "Printf.printf count: $PRINTF_COUNT"
echo "magenta count: $MAGENTA_COUNT"
if [ "$PRERR_COUNT" -ne "8" ]; then
echo "New prerr_endline introduced; please remove and re-check:"
echo "---"
echo "Output: $(git grep prerr_endline)"
exit 3
fi
if [ "$PRINT_COUNT" -ne "18" ]; then
echo "New print_endline introduced; please remove and re-check."
echo "---"
echo "Output: $(git grep print_endline)"
exit 3
fi
if [ "$PRINTF_COUNT" -ne "3" ]; then
echo "New Printf.printf introduced; please remove and re-check."
echo "---"
echo "Output: $(git grep Printf.printf)"
exit 3
fi
if [ "$MAGENTA_COUNT" -ne "1" ]; then
echo "Debug magenta color left in; please remove and re-check"
echo "---"
echo "Output: $(git grep magenta)"
exit 3
fi
echo "Lint check OK"