diff --git a/.golangci.yaml b/.golangci.yaml index 272385b..59cec71 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -170,6 +170,9 @@ linters: - linters: - dupl # Duplicate code detection path: _test\.go # Test files often have similar structures for readability + - linters: + - goconst # Repeated string detection + path: _test\.go # Test fixtures repeat literals by design (DAMP > DRY) - linters: - testifylint # Testify linter path: _test\.go