@@ -30,7 +30,8 @@
"golang.go",
"vue.volar",
"ms-azuretools.vscode-docker",
- "akino.i18n-gettext"
+ "akino.i18n-gettext",
+ "github.vscode-github-actions"
]
}
},
@@ -16,6 +16,7 @@ func Run() (reports Reports) {
status = ReportStatusError
reports = append(reports, &Report{
+ Key: task.Key,
Name: task.Name,
Description: task.Description,
Fixable: task.FixFunc != nil,
@@ -24,6 +24,7 @@ const (
)
type Report struct {
+ Key string `json:"key"`
Name *translation.Container `json:"name"`
Description *translation.Container `json:"description,omitempty"`
Fixable bool `json:"fixable"`