package
Version:
v3.38.1
Opens a new window with list of versions in this module.
Published: Jul 19, 2024
License: MIT
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Location struct {
Line int `json:"line"`
Column int `json:"column"`
Taskfile string `json:"taskfile"`
}
Location describes a task's location in a taskfile
type Task struct {
Name string `json:"name"`
Desc string `json:"desc"`
Summary string `json:"summary"`
Aliases []string `json:"aliases"`
UpToDate bool `json:"up_to_date"`
Location *Location `json:"location"`
}
Task describes a single task
type Taskfile struct {
Tasks []Task `json:"tasks"`
Location string `json:"location"`
}
Taskfile wraps task list output for use in editor integrations (e.g. VSCode, etc)
Source Files
¶
Click to show internal directories.
Click to hide internal directories.