mirror of
https://github.com/securego/gosec.git
synced 2024-11-05 19:45:51 +00:00
656691b387
* feature(issue): Add function to return file path and line number * docs(formatter/CreateReport): Update formats accepted * feature(formatter): Add color output for text format Basic color support for text format. For now, only the "Summary" title and "Issues" section has color * feature(formatter): Highlight issues based on severity Given an issue, the file path is painted based on its severity. We're using the following rules: high is red, medium is yellow and low is simple black & white * feature(main): Add color flag It's only valid for text format * refactor(formatter): Passing color flag forward
20 lines
697 B
Modula-2
20 lines
697 B
Modula-2
module github.com/securego/gosec/v2
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/golang/protobuf v1.3.2 // indirect
|
|
github.com/kr/pretty v0.1.0 // indirect
|
|
github.com/lib/pq v1.3.0 // indirect
|
|
github.com/mozilla/tls-observatory v0.0.0-20200317151703-4fa42e1c2dee
|
|
github.com/nbutton23/zxcvbn-go v0.0.0-20180912185939-ae427f1e4c1d
|
|
github.com/onsi/ginkgo v1.12.0
|
|
github.com/onsi/gomega v1.9.0
|
|
github.com/stretchr/testify v1.4.0 // indirect
|
|
golang.org/x/text v0.3.2 // indirect
|
|
golang.org/x/tools v0.0.0-20200331202046-9d5940d49312
|
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
|
|
gopkg.in/gookit/color.v1 v1.1.6
|
|
gopkg.in/yaml.v2 v2.2.8
|
|
)
|
|
|
|
go 1.13
|