WithOutputStyle sets the output style of the [Executor]. By default, the output style is set to the style defined in the Taskfile.
(outputStyle ast.Output)
| 528 | // WithOutputStyle sets the output style of the [Executor]. By default, the |
| 529 | // output style is set to the style defined in the Taskfile. |
| 530 | func WithOutputStyle(outputStyle ast.Output) ExecutorOption { |
| 531 | return &outputStyleOption{outputStyle} |
| 532 | } |
| 533 | |
| 534 | type outputStyleOption struct { |
| 535 | outputStyle ast.Output |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…