Skip to content

Commit

Permalink
linter: igonre misspell issue
Browse files Browse the repository at this point in the history
  • Loading branch information
camilamacedo86 committed Sep 23, 2023
1 parent 91f987b commit b32f7e3
Showing 1 changed file with 21 additions and 19 deletions.
40 changes: 21 additions & 19 deletions subcommands/devices/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,25 +68,27 @@ func ownerFormatter(d *client.Device) string {
}

var Columns = map[string]column{
"name": {func(d *client.Device) string { return d.Name }},
"uuid": {func(d *client.Device) string { return d.Uuid }},
"factory": {func(d *client.Device) string { return d.Factory }},
"owner": {ownerFormatter},
"device-group": {func(d *client.Device) string { return d.GroupName }},
"target": {func(d *client.Device) string { return d.TargetName }},
"status": {statusFormatter},
"apps": {func(d *client.Device) string { return strings.Join(d.DockerApps, ",") }},
"up-to-date": {func(d *client.Device) string { return fmt.Sprintf("%v", d.UpToDate) }},
"tag": {func(d *client.Device) string { return d.Tag }},
"created-at": {func(d *client.Device) string { return d.ChangeMeta.CreatedAt }},
"created-by": {func(d *client.Device) string { return d.ChangeMeta.CreatedBy }},
"updated-at": {func(d *client.Device) string { return d.ChangeMeta.UpdatedAt }},
"updated-by": {func(d *client.Device) string { return d.ChangeMeta.UpdatedBy }},
"last-seen": {func(d *client.Device) string { return d.LastSeen }},
"ostree-hash": {func(d *client.Device) string { return d.OstreeHash }},
"current-update": {func(d *client.Device) string { return d.CurrentUpdate }},
"is-prod": {func(d *client.Device) string { return fmt.Sprintf("%v", d.IsProd) }},
"is-wave": {func(d *client.Device) string { return fmt.Sprintf("%v", d.IsWave) }},
"name": {func(d *client.Device) string { return d.Name }},
"uuid": {func(d *client.Device) string { return d.Uuid }},
"factory": {func(d *client.Device) string { return d.Factory }},
"owner": {ownerFormatter},
"device-group": {func(d *client.Device) string { return d.GroupName }},
"target": {func(d *client.Device) string { return d.TargetName }},
"status": {statusFormatter},
"apps": {func(d *client.Device) string { return strings.Join(d.DockerApps, ",") }},
"up-to-date": {func(d *client.Device) string { return fmt.Sprintf("%v", d.UpToDate) }},
"tag": {func(d *client.Device) string { return d.Tag }},
"created-at": {func(d *client.Device) string { return d.ChangeMeta.CreatedAt }},
"created-by": {func(d *client.Device) string { return d.ChangeMeta.CreatedBy }},
"updated-at": {func(d *client.Device) string { return d.ChangeMeta.UpdatedAt }},
"updated-by": {func(d *client.Device) string { return d.ChangeMeta.UpdatedBy }},
"last-seen": {func(d *client.Device) string { return d.LastSeen }},
"ostree-hash": {func(d *client.Device) string { return d.OstreeHash }},
// TODO: Check if we can fix
//nolint:misspell
"curent-update": {func(d *client.Device) string { return d.CurrentUpdate }},
"is-prod": {func(d *client.Device) string { return fmt.Sprintf("%v", d.IsProd) }},
"is-wave": {func(d *client.Device) string { return fmt.Sprintf("%v", d.IsWave) }},
}

func addPaginationFlags(cmd *cobra.Command) {
Expand Down

0 comments on commit b32f7e3

Please sign in to comment.