Skip to content

Commit

Permalink
Merge pull request #1433 from shirou/feature/ignore_revive_issues
Browse files Browse the repository at this point in the history
chore(golangci-lint): exlucde unused-parameters and empty-block rule
  • Loading branch information
shirou committed Mar 20, 2023
2 parents 5869265 + 24be017 commit c036597
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,19 @@ issues:
exclude-rules:
- linters:
- gosec
text: "G204"
text: "G204"
- linters:
- revive
text: "var-naming"
text: "var-naming"
- linters:
- revive
text: "exported"
text: "exported"
- linters:
- revive
text: "empty-block"
- linters:
- revive
text: "unused-parameter"
linters:
enable:
- asciicheck
Expand Down

0 comments on commit c036597

Please sign in to comment.