golint
No long description provided.
Installation
dagger install github.com/tsirysndr/daggerverse/golint@4be2931b2ba912a77a1bf9b6574ba6d7729f0576Entrypoint
Return Type
Golint Example
dagger -m github.com/tsirysndr/daggerverse/golint@4be2931b2ba912a77a1bf9b6574ba6d7729f0576 call \
func (m *MyModule) Example() *dagger.Golint {
return dag.
Golint()
}@function
def example() -> dagger.Golint:
return (
dag.golint()
)@func()
example(): Golint {
return dag
.golint()
}Types
Golint 🔗
lint() 🔗
Lint Go code.
Return Type
Directory !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| src | Directory ! | - | No description provided |
| path | StringKind | - | No description provided |
Example
dagger -m github.com/tsirysndr/daggerverse/golint@4be2931b2ba912a77a1bf9b6574ba6d7729f0576 call \
lintfunc (m *MyModule) Example(src ) {
return dag.
Golint().
Lint(src)
}@function
def example(src: ) -> :
return (
dag.golint()
.lint(src)
)@func()
example(src: ): {
return dag
.golint()
.lint(src)
}