Skip to content

Commit

Permalink
update golangci-lint to v1.55.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrre committed Oct 26, 2023
1 parent 44c2c80 commit 6d8af65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ linters:
# - "funlen" # It causes issues in table driven tests, and cyclomatic complexity is more relevant.
# - "gci" # Redundant with goimports and grouper.
# - "ginkgolinter" # Not used.
- "gocheckcompilerdirectives"
# - "gochecknoglobals" # It's OK.
# - "gochecknoinits" # It's OK.
- "gochecksumtype"
Expand Down Expand Up @@ -138,8 +139,6 @@ linters-settings:
- "whyNoLint" # We already have the nolintlint linter.
gocyclo:
min-complexity: 10
gosimple:
checks: [ "all" ]
govet:
enable-all: true
disable:
Expand All @@ -162,10 +161,6 @@ linters-settings:
- "disableStutteringCheck"
- name: "unused-parameter" # It's OK.
disabled: true
staticcheck:
checks: [ "all" ]
stylecheck:
checks: [ "all" ]
issues:
max-issues-per-linter: 0
max-same-issues: 0
2 changes: 1 addition & 1 deletion Makefile-common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ lint:
# - tag: vX.Y.Z
# - branch: master
# - latest
GOLANGCI_LINT_VERSION?=v1.55.0
GOLANGCI_LINT_VERSION?=v1.55.1
# Installation type:
# - binary
# - source
Expand Down

0 comments on commit 6d8af65

Please sign in to comment.