From 31c98745d33a45adc184f7fc0a659ea57a136de2 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Sun, 15 Feb 2026 10:45:57 +0000 Subject: [PATCH] add issue report limits --- .golangci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 3b0318d..7b047e9 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -137,5 +137,8 @@ formatters: - vendor issues: - max-same-issues: 0 - max-issues-per-linter: 0 + # Limit the number of same issues reported to avoid spam + max-same-issues: 50 + + # Limit the number of issues per linter to keep output manageable + max-issues-per-linter: 100