今天小編給大家分享的是golint的使用方法介紹,很多人都不太了解,今天小編為了讓大家更加了解golint的使用方法,所以給大家總結(jié)了以下內(nèi)容,一起往下看吧。一定會有所收獲的哦。
10年積累的成都做網(wǎng)站、成都網(wǎng)站建設經(jīng)驗,可以快速應對客戶對網(wǎng)站的新想法和需求。提供各種問題對應的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡服務。我雖然不認識你,你也不認識我。但先制作網(wǎng)站后付款的網(wǎng)站建設流程,更有鼎城免費網(wǎng)站建設讓你可以放心的選擇與我們合作。
根據(jù)作者的說法:
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代碼中不夠規(guī)范的地方。
一、編譯及生成可執(zhí)行程序
1、下載golang 的 lint,下載地址:https://github.com/golang/lint
2、解壓文件到$GOPATH/src/github.com/golang/lint
3、到目錄$GOPATH/src/github.com/golang/lint/golint中運行g(shù)o build ./
4、在當前目錄有g(shù)olint的可執(zhí)行程序
當然,最簡單的方式是:
go get github.com/golang/lint go install github.com/golang/lint
二、執(zhí)行方式:
golint 文件名或者目錄
檢查結(jié)果如下:
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 會檢查的內(nèi)容:
變量名規(guī)范
變量的聲明,像var str string = "test",會有警告,應該var str = "test"
大小寫問題,大寫導出包的要有注釋
x += 1 應該 x++
以上就是golint的使用方法的簡略介紹,當然詳細使用上面的不同還得要大家自己使用過才領(lǐng)會。如果想了解更多,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道哦!