You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
263 B
11 lines
263 B
# gofmt格式化
|
|
# run in terminal:
|
|
# make fmt
|
|
# win系统中,在git bash中如果出现make包没有找到
|
|
# 管理员运行git bash,运行以下命令
|
|
# choco install make
|
|
|
|
GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor)
|
|
|
|
fmt:
|
|
gofmt -w $(GOFMT_FILES)
|