protolint
No long description provided.
Installation
dagger install github.com/cloudnative-pg/daggerverse/protolint@23ffda6100005d626fddb569e8e471587bf32cbf
Entrypoint
Return Type
Protolint !
Arguments
Name | Type | Description |
---|---|---|
image | String | Protolint image to use. renovate image: datasource=docker depName=yoheimuta/protolint versioning=docker |
Example
dagger -m github.com/cloudnative-pg/daggerverse/protolint@23ffda6100005d626fddb569e8e471587bf32cbf call \
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 lint –source /path/ –args “-config_path=.protolint.yaml” –args .
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory ! | - | The directory of the repository. |
args | [String ! ] | - | A list of arguments to pass to commitlint. |
Example
dagger -m github.com/cloudnative-pg/daggerverse/protolint@23ffda6100005d626fddb569e8e471587bf32cbf 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)
}