mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-11-29 18:27:58 +08:00
11 lines
204 B
Bash
Executable File
11 lines
204 B
Bash
Executable File
for n in `find . -name "*.go"`; do
|
|
if [[ $n != ./vendor/* ]];
|
|
then
|
|
go tool vet $n
|
|
gofmt -w $n
|
|
# gometalinter $n
|
|
# golint $n
|
|
# gocyclo -over 15 $n
|
|
misspell $n
|
|
fi
|
|
done |