Dagger
Search

golint

This module provides a function to lint Go code.

Installation

dagger install github.com/tsirysndr/daggerverse/golint@e8bed26dfefaaf4ef3d00958965575131f34c69c

Entrypoint

Return Type
Golint
Example
func (m *myModule) example() *Golint  {
	return dag.
			Golint()
}

Types

Golint 🔗

lint() 🔗

Lint Go code.

Return Type
Directory !
Arguments
NameTypeDefault ValueDescription
srcDirectory !-No description provided
pathString "."No description provided
Example
func (m *myModule) example(src *Directory) *Directory  {
	return dag.
			Golint().
			Lint(src)
}