Skip to content

Commit

Permalink
remove unused-param from revive, add comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitrisJim authored Aug 21, 2023
1 parent 3e6df02 commit 1cbbf46
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ linters:
- typecheck
- tenv
- unconvert
# Prefer unparam over revive's unused param. It is more thorough in its checking.
- unparam
- unused
- misspell
Expand Down Expand Up @@ -101,6 +102,9 @@ linters-settings:
disabled: true
- name: defer
disabled: true
# Disabled in favour of unparam.
- name: unused-parameter
disabled: true
- name: unhandled-error
disabled: false
arguments:
Expand Down

0 comments on commit 1cbbf46

Please sign in to comment.