diff options
| author | Marc Vertes <mvertes@free.fr> | 2025-11-10 14:01:16 +0100 |
|---|---|---|
| committer | Marc Vertes <mvertes@free.fr> | 2025-11-10 14:01:16 +0100 |
| commit | 0035f65d697e165c4f2ba2d445bfa938ab4159ee (patch) | |
| tree | a2b9779d2cf0ac7c1a36ec381b0ed0b1be2a1bba /.golangci.yaml | |
| parent | c6ff109198546a8adb340a7be84a7fc03762081b (diff) | |
chore: fix lint
Diffstat (limited to '.golangci.yaml')
| -rw-r--r-- | .golangci.yaml | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/.golangci.yaml b/.golangci.yaml index f2191fb..a185bb8 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -1,8 +1,8 @@ +version: "2" linters: enable: - gocritic - godot - - gofumpt - gosec - misspell - perfsprint @@ -11,3 +11,23 @@ linters: - reassign - revive - unconvert + exclusions: + generated: lax + presets: + - comments + - common-false-positives + - legacy + - std-error-handling + paths: + - third_party$ + - builtin$ + - examples$ +formatters: + enable: + - gofumpt + exclusions: + generated: lax + paths: + - third_party$ + - builtin$ + - examples$ |
