Dagger
Search

spellcheck

No long description provided.

Installation

dagger install github.com/cloudnative-pg/daggerverse/spellcheck@08d20a03681c5817f69a2e0612a73ab05b1cdbd8

Entrypoint

Return Type
Spellcheck !
Arguments
NameTypeDefault ValueDescription
imageString "jonasbn/github-action-spellcheck:0.48.0"Spellcheck image to use. renovate image: datasource=docker depName=jonasbn/github-action-spellcheck versioning=docker
Example
dagger -m github.com/cloudnative-pg/daggerverse/spellcheck@08d20a03681c5817f69a2e0612a73ab05b1cdbd8 call \
func (m *myModule) example() *dagger.Spellcheck  {
	return dag.
			Spellcheck()
}
@function
def example() -> dagger.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
NameTypeDefault ValueDescription
sourceDirectory !-The directory of the repository.
Example
dagger -m github.com/cloudnative-pg/daggerverse/spellcheck@08d20a03681c5817f69a2e0612a73ab05b1cdbd8 call \
 spellcheck --source DIR_PATH
func (m *myModule) example(source *dagger.Directory) *dagger.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)
}