(ctx context.Context)
| 221 | } |
| 222 | |
| 223 | func (opt *Options) setDryRun(ctx context.Context) context.Context { |
| 224 | ctxNew, ci := fs.AddConfig(ctx) |
| 225 | ci.DryRun = opt.DryRun |
| 226 | return ctxNew |
| 227 | } |
| 228 | |
| 229 | func (opt *Options) applyFilters(ctx context.Context) (context.Context, error) { |
| 230 | filtersFile := opt.FiltersFile |
no test coverage detected