fix(lint): fixing more complex formatters problems.

This commit is contained in:
Houmgaor
2025-10-19 22:46:21 +02:00
parent 1398383a8d
commit fc6e479df9
9 changed files with 20 additions and 105 deletions

View File

@@ -693,7 +693,7 @@ func BenchmarkSlicesContains(b *testing.B) {
b.ResetTimer()
for i := 0; i < b.N; i++ {
slices.Contains(courses, target)
_ = slices.Contains(courses, target)
}
}
@@ -708,6 +708,6 @@ func BenchmarkSlicesIndexFunc(b *testing.B) {
b.ResetTimer()
for i := 0; i < b.N; i++ {
slices.IndexFunc(courses, predicate)
_ = slices.IndexFunc(courses, predicate)
}
}