Dagger
Search

protolint

No long description provided.

Installation

dagger install github.com/cloudnative-pg/daggerverse/protolint@9312a7826b1c8b5e67a44a12b092ab13a529adb7

Entrypoint

Return Type
Protolint !
Arguments
NameTypeDescription
imageString Protolint image to use. renovate image: datasource=docker depName=yoheimuta/protolint versioning=docker
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/cloudnative-pg/daggerverse/protolint@9312a7826b1c8b5e67a44a12b092ab13a529adb7 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)
}