mirror of
https://github.com/go-task/task.git
synced 2025-05-13 22:16:31 +02:00
* refactor: experiments flags * refactor: args.Parse * feat: recursive search for taskrc files * feat: consolidate some code into new fsext package * feat: add tests for search and default dir * fix: linting issues
9 lines
175 B
Go
9 lines
175 B
Go
package ast
|
|
|
|
import "github.com/Masterminds/semver/v3"
|
|
|
|
type TaskRC struct {
|
|
Version *semver.Version `yaml:"version"`
|
|
Experiments map[string]int `yaml:"experiments"`
|
|
}
|