From 4e242c3491f2b78537805f118ec1498a0d9b662e Mon Sep 17 00:00:00 2001 From: sneak Date: Wed, 9 Jul 2025 16:09:59 -0700 Subject: [PATCH] go 1.24 --- .golangci.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index c358408..fb66e71 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,7 +1,8 @@ version: "2" run: - go: "1.22" + go: "1.24" + tests: false linters: enable: @@ -80,13 +81,8 @@ issues: max-issues-per-linter: 0 max-same-issues: 0 exclude-rules: - # Exclude some linters from running on tests files + # Exclude all linters from running on test files - path: _test\.go - linters: - - gochecknoglobals - - mnd - - unparam - - errcheck # Allow long lines in generated code or test data - path: ".*_gen\\.go"