From b5df4571457e20c0656be1e180834d530e46d6da Mon Sep 17 00:00:00 2001 From: ProtoTess <32490978+0x524A@users.noreply.github.com> Date: Tue, 18 Nov 2025 18:02:18 +0000 Subject: [PATCH] fix: Update golangci-lint configuration by removing deprecated issue rules --- .golangci.yml | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index e3ad6fa..245ed5f 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,4 +1,4 @@ -version: 2 +version: "2" linters: enable: @@ -7,22 +7,5 @@ linters: - staticcheck - unused -issues: - exclude-rules: - - path: _test\.go - linters: - - errcheck - - path: examples/ - linters: - - errcheck - - unused - run: timeout: 5m - tests: true - -output: - format: colored-line-number - print-issued-lines: true - print-linter-name: true - sort-results: true