prettier
No long description provided.
Installation
dagger install github.com/wingyplus/daggerverse/prettier@b9b978f7feaba1baf6c408b1a9dea01ac2ca3510
Entrypoint
Return Type
Prettier
Example
func (m *myModule) example() *Prettier {
return dag.
Prettier()
}
Types
Prettier 🔗
formatFile() 🔗
Format a file.
Return Type
File !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
path | File ! | - | No description provided |
Example
func (m *myModule) example(path *File) *File {
return dag.
Prettier().
FormatFile(path)
}
container() 🔗
Returns a container that contains prettier
binary.
Return Type
Container !
Example
func (m *myModule) example() *Container {
return dag.
Prettier().
Container()
}