WithDisableFuzzy tells the [Executor] to disable fuzzy matching for task names.
(disableFuzzy bool)
| 391 | |
| 392 | // WithDisableFuzzy tells the [Executor] to disable fuzzy matching for task names. |
| 393 | func WithDisableFuzzy(disableFuzzy bool) ExecutorOption { |
| 394 | return &disableFuzzyOption{disableFuzzy} |
| 395 | } |
| 396 | |
| 397 | type disableFuzzyOption struct { |
| 398 | disableFuzzy bool |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…