| Age | Commit message (Collapse) | Author |
|
The golangci-lint does not output any results anymore
Either we are getting good at writing Go or the linter itself is become
less good.
We also have seen that the latest golangci-lint is failed to build
with Go tip, a simple "make" on the golangci-lint never success in my
experiences.
This changes fix all the output reported by the revive and shadow.
|
|
Replace any usage of ":=" with "var" declaration with type.
The ideas is to make the code reader know what is the expected return
value of function/method.
|
|
Signed-off-by: Shulhan <ms@kilabit.info>
|
|
Instead of parserX (or parser_x.go) we move the X as prefix so it will
become XParser (or x_parser.go).
|