Dagger
Search

protolint

No long description provided.

Installation

dagger install github.com/fcanovai/daggerverse/protolint@631410396495afde7dc18043a1bf52816f82db22

Entrypoint

Return Type
Protolint !
Arguments
NameTypeDescription
imageString Protolint image to use.
Example
func (m *myModule) example() *Protolint  {
	return dag.
			Protolint()
}
@function
def example() -> dag.Protolint:
	return (
		dag.protolint()
	)
@func()
example(): Protolint {
	return dag
		.protolint()
}

Types

Protolint

lint()

Lint runs protolint on proto files.

Example usage: dagger call run –source /path/ –args “-config_path=.protolint.yaml” –args .

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-The directory of the repository.
args[String ! ] -A list of arguments to pass to commitlint.
Example
dagger -m github.com/fcanovai/daggerverse/protolint@631410396495afde7dc18043a1bf52816f82db22 call \
 lint --source DIR_PATH
func (m *myModule) example(source *Directory) *Container  {
	return dag.
			Protolint().
			Lint(source)
}
@function
def example(source: dagger.Directory) -> dagger.Container:
	return (
		dag.protolint()
		.lint(source)
	)
@func()
example(source: Directory): Container {
	return dag
		.protolint()
		.lint(source)
}