started README

This commit is contained in:
golangci 2018-05-15 08:59:50 +03:00
parent 076ef9ccc0
commit f6b2d368a0
97 changed files with 7920 additions and 25 deletions

View file

@ -21,7 +21,8 @@ func (e *Executor) initLinters() {
func printLinterConfigs(lcs []pkg.LinterConfig) {
for _, lc := range lcs {
fmt.Printf("%s: %s\n", color.YellowString(lc.Linter.Name()), lc.Linter.Desc())
fmt.Printf("%s: %s [fast: %t]\n", color.YellowString(lc.Linter.Name()),
lc.Linter.Desc(), !lc.DoesFullImport)
}
}