spellcheck
No long description provided.
Installation
dagger install github.com/cloudnative-pg/daggerverse/spellcheck@1ad0ee66473e3a405d1078fcc55df00f2507d14a
Entrypoint
Return Type
Spellcheck !
Arguments
Name | Type | Description |
---|---|---|
image | String | Spellcheck image to use. renovate image: datasource=docker depName=jonasbn/github-action-spellcheck versioning=docker |
Example
dagger -m github.com/cloudnative-pg/daggerverse/spellcheck@1ad0ee66473e3a405d1078fcc55df00f2507d14a call \
func (m *myModule) example() *Spellcheck {
return dag.
Spellcheck()
}
@function
def example() -> dag.Spellcheck:
return (
dag.spellcheck()
)
@func()
example(): Spellcheck {
return dag
.spellcheck()
}
Types
Spellcheck 🔗
spellcheck() 🔗
Spellcheck runs spellcheck.
Example usage: dagger call spellcheck –source /path/to/your/repo
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory ! | - | The directory of the repository. |
Example
dagger -m github.com/cloudnative-pg/daggerverse/spellcheck@1ad0ee66473e3a405d1078fcc55df00f2507d14a call \
spellcheck --source DIR_PATH
func (m *myModule) example(source *Directory) *Container {
return dag.
Spellcheck().
Spellcheck(source)
}
@function
def example(source: dagger.Directory) -> dagger.Container:
return (
dag.spellcheck()
.spellcheck(source)
)
@func()
example(source: Directory): Container {
return dag
.spellcheck()
.spellcheck(source)
}