Merge pull request #1433 from shirou/feature/ignore_revive_issues

chore(golangci-lint): exlucde unused-parameters and empty-block rule
pull/1434/head
shirou 2 years ago committed by GitHub
commit c0365978d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

Loading…
Cancel
Save