Dagger
Search

yamllint

No long description provided.

Installation

dagger install github.com/tsirysndr/daggerverse/yamllint@84b2e8bbd9a9b7feac1b82d17a52ae6c389571b5

Entrypoint

Return Type
Yamllint
Example
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
NameTypeDefault ValueDescription
srcDirectory !-No description provided
pathStringKind -No description provided
Example
Function Yamllint.lint is not accessible from the yamllint module
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)
}