chore(Makefile): use linter version from dogfood Dockerfile (#11147)

* chore(Makefile): use golangci-lint version from dogfood Dockerfile

* chore(dogfood/Dockerfile): update golangci-lint to latest version

* chore(coderd): address linter complaints
This commit is contained in:
Cian Johnston
2023-12-12 10:02:32 +00:00
committed by GitHub
parent d07fa9c62f
commit 197cd935cf
9 changed files with 10 additions and 12 deletions
+1 -2
View File
@@ -79,9 +79,8 @@ func Ascending[T constraints.Ordered](a, b T) int {
return -1
} else if a == b {
return 0
} else {
return 1
}
return 1
}
func Descending[T constraints.Ordered](a, b T) int {