yamllint
No long description provided.
Installation
dagger install github.com/tsirysndr/daggerverse/yamllint@344d4992eeb0dca8bb069c484c5d85682eb18fefEntrypoint
Return Type
Yamllint Example
dagger -m github.com/tsirysndr/daggerverse/yamllint@344d4992eeb0dca8bb069c484c5d85682eb18fef call \
func (m *MyModule) Example() *dagger.Yamllint {
return dag.
Yamllint()
}@function
def example() -> dagger.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@344d4992eeb0dca8bb069c484c5d85682eb18fef call \
lintfunc (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)
}dev() 🔗
Returns a container with yamllint installed.
Return Type
Container !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| src | Directory | - | No description provided |
Example
dagger -m github.com/tsirysndr/daggerverse/yamllint@344d4992eeb0dca8bb069c484c5d85682eb18fef call \
devfunc (m *MyModule) Example() {
return dag.
Yamllint().
Dev()
}@function
def example() -> :
return (
dag.yamllint()
.dev()
)@func()
example(): {
return dag
.yamllint()
.dev()
}