Dagger
Search

spellcheck

No long description provided.

Installation

dagger install github.com/fcanovai/daggerverse/spellcheck@a6cc82a6ea96a12d3834c58806bdd7cfd839c6e5

Entrypoint

Return Type
Spellcheck !
Arguments
NameTypeDescription
imageString Spellcheck image to use. renovate image: datasource=docker depName=jonasbn/github-action-spellcheck versioning=docker
Example
dagger -m github.com/fcanovai/daggerverse/spellcheck@a6cc82a6ea96a12d3834c58806bdd7cfd839c6e5 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
NameTypeDefault ValueDescription
sourceDirectory !-The directory of the repository.
Example
dagger -m github.com/fcanovai/daggerverse/spellcheck@a6cc82a6ea96a12d3834c58806bdd7cfd839c6e5 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)
}