yamllint
No long description provided.
Installation
dagger install github.com/tsirysndr/daggerverse/yamllint@84b2e8bbd9a9b7feac1b82d17a52ae6c389571b5
Entrypoint
Return Type
Yamllint
Example
dagger -m github.com/tsirysndr/daggerverse/yamllint@84b2e8bbd9a9b7feac1b82d17a52ae6c389571b5 call \
func (m *myModule) example() *Yamllint {
return dag.
Yamllint()
}
@function
def example() -> dag.Yamllint:
return (
dag.yamllint()
)
@func()
example(): Yamllint {
return dag
.yamllint()
}
Types
Yamllint 🔗
lint() 🔗
Lint Yaml files.
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/yamllint@84b2e8bbd9a9b7feac1b82d17a52ae6c389571b5 call \
lint
func (m *myModule) example(src ) {
return dag.
Yamllint().
Lint(src)
}
@function
def example(src: ) -> :
return (
dag.yamllint()
.lint(src)
)
@func()
example(src: ): {
return dag
.yamllint()
.lint(src)
}