mirror of
https://github.com/grafana/grafana.git
synced 2025-01-19 13:03:32 -06:00
caa1314f44
* Build: use golangci-lint as a make command * Since gometalinter was deprecated in favor of golangci-lint so it was replaced by it. Responsibilities held by the gometalinter was moved to golangci-lint * There was some changes in implementation (that was also mentioned in the code comment) between the tools, which uncovered couple errors in the code. Those issues were either solved or disabled by the inline comments * Introduce the golangci-lint config, to make their configuration more manageable * Build: replace backend-lint.sh script with make
19 lines
832 B
Modula-2
19 lines
832 B
Modula-2
module github.com/grafana/grafana/scripts/go
|
|
|
|
go 1.12
|
|
|
|
require (
|
|
github.com/Unknwon/bra v0.0.0-20181014071252-e3d443382332
|
|
github.com/Unknwon/com v0.0.0-20190321035513-0fed4efef755 // indirect
|
|
github.com/Unknwon/log v0.0.0-20150304194804-e617c87089d3 // indirect
|
|
github.com/alecthomas/gometalinter v3.0.0+incompatible
|
|
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf // indirect
|
|
github.com/golangci/golangci-lint v1.17.1 // indirect
|
|
github.com/google/shlex v0.0.0-20181106134648-c34317bd91bf // indirect
|
|
github.com/mgechev/revive v0.0.0-20190505013521-22b849f28677
|
|
github.com/securego/gosec v0.0.0-20190510081509-ee80733faf72
|
|
github.com/urfave/cli v1.20.0 // indirect
|
|
gopkg.in/alecthomas/kingpin.v3-unstable v3.0.0-20180810215634-df19058c872c // indirect
|
|
gopkg.in/fsnotify/fsnotify.v1 v1.4.7 // indirect
|
|
)
|