-
Notifications
You must be signed in to change notification settings - Fork 21
/
linter.sh
executable file
·173 lines (150 loc) · 4.29 KB
/
linter.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
#!/bin/bash
SCRIPT_NAME="$(basename "${BASH_SOURCE:-$0}")"
readonly SCRIPT_NAME
# Dockerコンテナ系の定数
readonly CONTAINER_DIR_PREFIX=/work
# 着色系ANSIエスケープシーケンス
readonly RED=$'\x1b[31m'
readonly GREEN=$'\x1b[32m'
readonly RESET=$'\x1b[m'
# デフォルトの静的解析対象
readonly DEFAULT_TARGET_FILES=(*.sh bin/*)
test_count=0
err_count=0
main() {
# 引数なしのときはヘルプを出力して終了
if [[ $# -lt 1 ]]; then
usage >&2
return 1
fi
while ((0 < $#)); do
local opt=$1
shift
case "$opt" in
help)
usage
return
;;
setup)
# フォーマットとlintに使うDockerイメージを取得
docker-compose pull formatter linter
;;
format)
# コードフォーマットにかける
overwrite=""
cmd_format "$@"
print_check_result
return $?
;;
format-save)
# コードフォーマットにかけて上書き保存
overwrite="-w"
cmd_format "$@"
print_check_result
return $?
;;
lint)
# 静的解析
cmd_lint "$@"
print_check_result
return $?
;;
all)
# コードフォーマット+静的解析
cmd_format "$@"
cmd_lint "$@"
print_check_result
return $?
;;
*)
usage >&2
return 1
;;
esac
done
}
usage() {
cat << EOS
$SCRIPT_NAME はプロジェクト内のシェルスクリプトのコードスタイルチェックをします。
Usage:
$SCRIPT_NAME <command>
Available commands:
help このヘルプを出力する。
setup リントツールをセットアップする。
format [files...] コードフォーマットにかける。
format-save [files...] コードフォーマットして上書き保存する。
lint [files...] リントにかける。
all プロジェクト全体をフォーマットとリントにかける。
EOS
}
## フォーマットにかけるサブコマンド。
cmd_format() {
# 引数(ファイル)の指定があればそのファイルを解析する
# なければデフォルト指定(プロジェクト全体)のファイルを解析する
local files=("${DEFAULT_TARGET_FILES[@]}")
if [[ 0 -lt $# ]]; then
files=("$@")
fi
# テストするファイルの件数を加算
test_count=$((test_count + ${#files[@]}))
# コンテナ内のマウントディレクトリのフルパスに変更
local fullpath_files=()
for f in "${files[@]}"; do
fullpath_files+=("$CONTAINER_DIR_PREFIX/$f")
done
run_shfmt "${fullpath_files[@]}"
}
## フォーマットにかける。
run_shfmt() {
local files=("$@")
local ret
docker-compose run formatter $overwrite "${files[@]}"
ret=$?
if [[ "$ret" -ne 0 ]]; then
err_count=$((err_count + 1))
fi
}
## 静的解析にかけるサブコマンド。
cmd_lint() {
# 引数(ファイル)の指定があればそのファイルを解析する
# なければデフォルト指定(プロジェクト全体)のファイルを解析する
local files=("${DEFAULT_TARGET_FILES[@]}")
if [[ 0 -lt $# ]]; then
files=("$@")
fi
# テストするファイルの件数を加算
test_count=$((test_count + ${#files[@]}))
# コンテナ内のマウントディレクトリのフルパスに変更
local fullpath_files=()
for f in "${files[@]}"; do
# unko.puzzleはスキップする
if [[ "$f" =~ ^.*unko.puzzle$ ]]; then
continue
fi
fullpath_files+=("$CONTAINER_DIR_PREFIX/$f")
done
run_shellcheck "${fullpath_files[@]}"
}
## 静的解析にかける。
run_shellcheck() {
local files=("$@")
local ret
docker-compose run linter "${files[@]}"
ret=$?
if [[ "$ret" -ne 0 ]]; then
err_count=$((err_count + 1))
fi
}
## テストの結果を出力する。
print_check_result() {
echo "--------------------------------------------------------------------------------"
if [[ "$err_count" -lt 1 ]]; then
echo -e "[ ${GREEN}PASS${RESET} ] ($test_count/$test_count) all lint were passed."
return
else
echo -e "[ ${RED}FAIL${RESET} ] lint were failed."
return 1
fi
}
main ${1+"$@"}
exit $?