@@ -238,9 +238,9 @@ Inspects source code for security problems by scanning the Go AST.
238238| `go-sec-repo-mod` | Run `'cd $(mod_root); gosec [$ARGS] ./...'` for each module in the repo
239239| `go-sec-repo-pkg` | Run `'gosec [$ARGS] ./...'` in repo root folder
240240
241- ##### Install
241+ ##### Install (via [bingo](https://github.com/TekWizely/bingo))
242242```
243- go get github.com/securego/gosec/v2/cmd/gosec
243+ bingo install github.com/securego/gosec/v2/cmd/gosec
244244```
245245
246246##### Help
@@ -304,9 +304,9 @@ Updates your Go import lines, adding missing ones and removing unreferenced ones
304304|--------------|------------
305305| `go-imports` | Run `'goimports -l -d [$ARGS] $FILE'` for each staged .go file
306306
307- ##### Install
307+ ##### Install (via [bingo](https://github.com/TekWizely/bingo))
308308```
309- go get -u golang.org/x/tools/cmd/goimports
309+ bingo install golang.org/x/tools/cmd/goimports
310310```
311311
312312##### Useful Args
@@ -334,9 +334,9 @@ Implements a Go pretty-printer (like `go-fmt`) that also adds zero-value return
334334|--------------|------------
335335| `go-returns` | Run `'goreturns -l -d [$ARGS] $FILE'` for each staged .go file
336336
337- ##### Install
337+ ##### Install (via [bingo](https://github.com/TekWizely/bingo))
338338```
339- go get -u github.com/sqs/goreturns
339+ bingo install github.com/sqs/goreturns
340340```
341341
342342##### Useful Args
@@ -363,9 +363,9 @@ A linter for Go source code, meant to carry out the stylistic conventions put fo
363363|-----------|------------
364364| `go-lint` | Run `'golint -set_exit_status [$ARGS] $FILE'` for each staged .go file
365365
366- ##### Install
366+ ##### Install (via [bingo](https://github.com/TekWizely/bingo))
367367```
368- go get -u golang.org/x/lint/golint
368+ bingo install golang.org/x/lint/golint
369369```
370370
371371##### Help
@@ -384,9 +384,9 @@ go get -u golang.org/x/lint/golint
384384| `go-revive-mod` | Run `'cd $(mod_root $FILE); revive [$ARGS] ./...'` for each staged .go file
385385| `go-revive-repo-mod` | Run `'cd $(mod_root); revive [$ARGS] ./...'` for each module in the repo
386386
387- ##### Install
387+ ##### Install (via [bingo](https://github.com/TekWizely/bingo))
388388```
389- go get -u github.com/mgechev/revive
389+ bingo install github.com/mgechev/revive
390390```
391391
392392##### Useful Args
@@ -452,9 +452,9 @@ A FAST linter aggregator, with colored output, fewer false-positives, and suppor
452452| `golangci-lint-repo-mod` | Run `'cd $(mod_root); golangci-lint run [$ARGS] ./...'` for each module in the repo
453453| `golangci-lint-repo-pkg` | Run `'golangci-lint run [$ARGS] ./...'` in repo root folder
454454
455- ##### Install
455+ ##### Install (via [bingo](https://github.com/TekWizely/bingo))
456456```
457- go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
457+ bingo install github.com/golangci/golangci-lint/cmd/golangci-lint
458458```
459459##### Useful Args
460460```
0 commit comments