chore: bump go + golangci-lint

This commit is contained in:
Alec Thomas
2024-08-20 08:16:24 +10:00
parent 6292953645
commit 2ad9498bdf
11 changed files with 11 additions and 8 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ func levenshtein(a, b string) int {
return f[len(f)-1]
}
func min(a, b int) int {
func min(a, b int) int { //nolint:predeclared
if a <= b {
return a
}