mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-03 04:07:51 +08:00
7 lines
115 B
Bash
7 lines
115 B
Bash
|
for n in `find . -name "*.go"`; do
|
||
|
if [[ $n != ./vendor/* ]];
|
||
|
then
|
||
|
gofmt -w $n
|
||
|
golint $n
|
||
|
fi
|
||
|
done
|