forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
check_spelling.sh
executable file
·82 lines (65 loc) · 2.23 KB
/
check_spelling.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/bin/bash
# Applies requisite code formatters to the source tree
# check_spelling.sh
# Why choose misspell?
# https://github.com/client9/misspell#what-are-other-misspelling-correctors-and-whats-wrong-with-them
set -u
set -e
VERSION="0.3.4"
LINUX_MISSPELL_SHA="34d489dbc5ddb4dfd6d3cfac9fde8660e6c37e6c"
MAC_MISSPELL_SHA="f2607e2297b9e8af562e384c38045033375c7433"
TMP_DIR="/tmp"
OS=""
MISSPELL_ARGS="-error -o stderr"
if [[ "$#" -lt 1 ]]; then
echo "Usage: $0 check|fix"
exit -1
fi
if [[ "$1" == "fix" ]]; then
MISSPELL_ARGS="-w"
fi
if [[ "$(uname)" == "Darwin" ]]; then
OS="mac"
elif [[ "$(uname)" == "Linux" ]]; then
OS="linux"
else
echo "Current only support mac/Linux"
exit 1
fi
SCRIPTPATH=$( cd "$(dirname "$0")" ; pwd -P )
ROOTDIR="${SCRIPTPATH}/.."
cd "$ROOTDIR"
BIN_FILENAME="misspell_"${VERSION}"_"${OS}"_64bit.tar.gz"
# Install tools we need
if [[ ! -e "${TMP_DIR}/misspell" ]]; then
if ! wget https://github.com/client9/misspell/releases/download/v"${VERSION}"/"${BIN_FILENAME}" \
-O "${TMP_DIR}/${BIN_FILENAME}" --no-verbose --tries=3 -o "${TMP_DIR}/wget.log"; then
cat "${TMP_DIR}/wget.log"
exit -1
fi
tar -xvf "${TMP_DIR}/${BIN_FILENAME}" -C "${TMP_DIR}" &> /dev/null
fi
ACTUAL_SHA=""
EXPECT_SHA=""
if [[ "${OS}" == "linux" ]]; then
ACTUAL_SHA=$(sha1sum "${TMP_DIR}"/misspell|cut -d' ' -f1)
EXPECT_SHA="${LINUX_MISSPELL_SHA}"
else
ACTUAL_SHA=$(shasum -a 1 "${TMP_DIR}"/misspell|cut -d' ' -f1)
EXPECT_SHA="${MAC_MISSPELL_SHA}"
fi
if [[ ! ${ACTUAL_SHA} == ${EXPECT_SHA} ]]; then
echo "Expect shasum is ${ACTUAL_SHA}, but actual is shasum ${EXPECT_SHA}"
exit 1
fi
chmod +x "${TMP_DIR}/misspell"
# Spell checking
# All the skipping files are defined in tools/spelling_skip_files.txt
SPELLING_SKIP_FILES="${ROOTDIR}/tools/spelling_skip_files.txt"
# All the ignore words are defined in tools/spelling_whitelist_words.txt
SPELLING_WHITELIST_WORDS_FILE="${ROOTDIR}/tools/spelling_whitelist_words.txt"
WHITELIST_WORDS=$(echo -n $(cat "${SPELLING_WHITELIST_WORDS_FILE}" | \
grep -v "^#"|grep -v "^$") | tr ' ' ',')
SKIP_FILES=$(echo $(cat "${SPELLING_SKIP_FILES}") | sed "s| | -e |g")
git ls-files | grep -v -e "${SKIP_FILES}" | xargs "${TMP_DIR}/misspell" -i \
"${WHITELIST_WORDS}" ${MISSPELL_ARGS}