forked from rust-lang/rustc-dev-guide
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcheck_line_lengths.sh
executable file
·43 lines (37 loc) · 1015 Bytes
/
check_line_lengths.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
#!/bin/bash
if [ "$1" == "--help" ]; then
echo 'Usage:'
echo ' MAX_LINE_LENGTH=100' "$0" 'src/**/*.md'
exit 1
fi
if [ "$MAX_LINE_LENGTH" == "" ]; then
echo '`MAX_LINE_LENGTH` environment variable not set. Try --help.'
exit 1
fi
if [ "$1" == "" ]; then
echo 'No files provided.'
exit 1
fi
echo "Checking line lengths in all source files <= $MAX_LINE_LENGTH chars..."
echo "Offending files and lines:"
(( bad_lines = 0 ))
(( inside_block = 0 ))
for file in "$@" ; do
echo "$file"
(( line_no = 0 ))
while IFS="" read -r line || [[ -n "$line" ]] ; do
(( line_no++ ))
if [[ "$line" =~ ^'```' ]] ; then
(( inside_block = !$inside_block ))
continue
fi
if ! (( $inside_block )) \
&& ! [[ "$line" =~ " | "|"-|-"|"://"|"]:"|\[\^[^\ ]+\]: ]] \
&& (( "${#line}" > $MAX_LINE_LENGTH )) ; then
(( bad_lines++ ))
echo -e "\t$line_no : $line"
fi
done < "$file"
done
echo "$bad_lines offending lines found."
(( $bad_lines == 0 ))