mirror of
https://github.com/mgechev/revive.git
synced 2025-05-31 22:49:41 +02:00
* Rewrite Friendly.table method to replace tablewriter with fmt.Fprintf * Refactor Stylish formatter to use custom table rendering instead of tablewriter * Refactor Friendly and Stylish formatters to utilize a new custom table rendering function * Remove unused dependencies from go.mod and go.sum * Refactor table formatting by replacing formatTable with a new table function in friendly.go * Utilize text/tabwriter in fromatting a table * Refactor table function to use bytes.Buffer for improved performance
27 lines
732 B
Modula-2
27 lines
732 B
Modula-2
module github.com/mgechev/revive
|
|
|
|
go 1.23.0
|
|
|
|
require (
|
|
codeberg.org/chavacava/garif v0.2.0
|
|
github.com/BurntSushi/toml v1.5.0
|
|
github.com/fatih/color v1.18.0
|
|
github.com/fatih/structtag v1.2.0
|
|
github.com/hashicorp/go-version v1.7.0
|
|
github.com/mgechev/dots v0.0.0-20210922191527-e955255bf517
|
|
github.com/spf13/afero v1.14.0
|
|
golang.org/x/mod v0.24.0
|
|
golang.org/x/sync v0.14.0
|
|
golang.org/x/tools v0.33.0
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
golang.org/x/sys v0.33.0 // indirect
|
|
golang.org/x/text v0.25.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|