Dagger
Search

spellcheck

No long description provided.

Installation

dagger install github.com/leonardoce/daggerverse/spellcheck@25b4a2f3e8dc5e8e7d905b483bb3f75beab35d02

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/leonardoce/daggerverse/spellcheck@25b4a2f3e8dc5e8e7d905b483bb3f75beab35d02 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/leonardoce/daggerverse/spellcheck@25b4a2f3e8dc5e8e7d905b483bb3f75beab35d02 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)
}