fix: disable line length checks for test files with test vectors

Add nolint:lll directives to test files containing long test vectors
and function signatures to avoid unnecessary line breaking.
Bu işleme şunda yer alıyor:
2025-06-20 09:16:40 -07:00
ebeveyn 08a42b16dd
işleme fd125c5fe1
4 değiştirilmiş dosya ile 20 ekleme ve 1 silme
+2 -1
Dosyayı Görüntüle
@@ -1,3 +1,4 @@
//nolint:lll // Test vectors contain long lines
package agehd
import (
@@ -679,7 +680,7 @@ func TestConcurrentDerivation(t *testing.T) {
// Collect results
resultMap := make(map[string]int)
for range testNumGoroutines*testNumIterations {
for range testNumGoroutines * testNumIterations {
select {
case result := <-results:
resultMap[result]++
+1
Dosyayı Görüntüle
@@ -1,4 +1,5 @@
//nolint:gosec // G101: Test file contains BIP85 test vectors, not real credentials
//nolint:lll // Test vectors contain long lines
package bip85
//nolint:revive,unparam // Test file with BIP85 test vectors