您好,登錄后才能下訂單哦!
今天小編給大家分享的是golint的使用方法介紹,很多人都不太了解,今天小編為了讓大家更加了解golint的使用方法,所以給大家總結了以下內容,一起往下看吧。一定會有所收獲的哦。
根據作者的說法:
Golint is a linter for Go source code.
Golint differs from gofmt. Gofmt reformats Go source code, whereas
golint prints out style mistakes.
Golint differs from govet. Govet is concerned with correctness, whereas
golint is concerned with coding style. Golint is in use at Google, and it
seeks to match the accepted style of the open source Go project.
一句話就是Golint用于檢查go代碼中不夠規范的地方。
一、編譯及生成可執行程序
1、下載golang 的 lint,下載地址:https://github.com/golang/lint
2、解壓文件到$GOPATH/src/github.com/golang/lint
3、到目錄$GOPATH/src/github.com/golang/lint/golint中運行go build ./
4、在當前目錄有golint的可執行程序
當然,最簡單的方式是:
go get github.com/golang/lint go install github.com/golang/lint
二、執行方式:
golint 文件名或者目錄
檢查結果如下:
import-dot.go:6:8: should not use dot imports else.go:11:9: if block ends with a return statement, so drop this else and outdent its block sort.go:11:1: exported method T.Len should have comment or be unexported sort.go:20:1: exported method U.Other should have comment or be unexported
從上面輸出可以看到,golint對go代碼給出的建議。
golint 會檢查的內容:
變量名規范
變量的聲明,像var str string = "test",會有警告,應該var str = "test"
大小寫問題,大寫導出包的要有注釋
x += 1 應該 x++
以上就是golint的使用方法的簡略介紹,當然詳細使用上面的不同還得要大家自己使用過才領會。如果想了解更多,歡迎關注億速云行業資訊頻道哦!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。