fixed / suppressed (irrelevant) golangci-lint errors

This commit is contained in:
yusing
2024-12-17 09:28:12 +08:00
parent d82594bf09
commit 4d94d12e9c
22 changed files with 89 additions and 69 deletions

View File

@@ -149,7 +149,7 @@ func extractFields(t reflect.Type) []reflect.StructField {
return nil
}
var fields []reflect.StructField
for i := 0; i < t.NumField(); i++ {
for i := range t.NumField() {
field := t.Field(i)
if !field.IsExported() {
continue

View File

@@ -32,6 +32,7 @@ func ToLowerNoSnake(s string) string {
return strings.ToLower(strings.ReplaceAll(s, "_", ""))
}
//nolint:intrange
func LevenshteinDistance(a, b string) int {
if a == b {
return 0