From 2ae64900a51e86a6c6f93540453714652bc32128 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Mon, 24 Mar 2025 22:11:02 +0100 Subject: [PATCH] chore(ci): fix golangci-lint configuration --- .golangci.yml | 34 +++++++++++++++++++++++++--------- 1 file changed, 25 insertions(+), 9 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 0156a0a..1cea1ff 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,19 +1,12 @@ -# Visit https://golangci-lint.run/ for usage documentation -# and information on other useful linters -issues: - max-issues-per-linter: 0 - max-same-issues: 0 - +version: "2" linters: - disable-all: true + default: none enable: - copyloopvar - durationcheck - errcheck - forcetypeassert - godot - - gofmt - - gosimple - govet - ineffassign - makezero @@ -24,3 +17,26 @@ linters: - unconvert - unparam - unused + exclusions: + generated: lax + presets: + - comments + - common-false-positives + - legacy + - std-error-handling + paths: + - third_party$ + - builtin$ + - examples$ +issues: + max-issues-per-linter: 0 + max-same-issues: 0 +formatters: + enable: + - gofmt + exclusions: + generated: lax + paths: + - third_party$ + - builtin$ + - examples$