command/builder.go

Summary

Maintainability
A
0 mins
Test Coverage

exported method Builder.SetStdin should have comment or be unexported
Open

func (b *Builder) SetStdin(rc io.ReadCloser) {
Severity: Minor
Found in command/builder.go by golint

exported type BuildFunc should have comment or be unexported
Open

    BuildFunc func(b *Builder) error
Severity: Minor
Found in command/builder.go by golint

exported method Builder.AddFlag should have comment or be unexported
Open

func (b *Builder) AddFlag(flag string) {
Severity: Minor
Found in command/builder.go by golint

exported function NewBuilder should have comment or be unexported
Open

func NewBuilder(prelude []string, builders []BuildFunc) *Builder {
Severity: Minor
Found in command/builder.go by golint

exported method Builder.AddArgs should have comment or be unexported
Open

func (b *Builder) AddArgs(args ...string) {
Severity: Minor
Found in command/builder.go by golint

exported type Builder should have comment or be unexported
Open

    Builder struct {
Severity: Minor
Found in command/builder.go by golint

exported method Builder.AddFlagValue should have comment or be unexported
Open

func (b *Builder) AddFlagValue(flag, value string) {
Severity: Minor
Found in command/builder.go by golint

exported method Builder.Build should have comment or be unexported
Open

func (b *Builder) Build() ([]string, io.ReadCloser, error) {
Severity: Minor
Found in command/builder.go by golint

There are no issues that match your filters.

Category
Status