Skip to content

Commit c036597

Browse files
authored
Merge pull request #1433 from shirou/feature/ignore_revive_issues
chore(golangci-lint): exlucde unused-parameters and empty-block rule
2 parents 5869265 + 24be017 commit c036597

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.golangci.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,19 @@ issues:
33
exclude-rules:
44
- linters:
55
- gosec
6-
text: "G204"
6+
text: "G204"
77
- linters:
88
- revive
9-
text: "var-naming"
9+
text: "var-naming"
1010
- linters:
1111
- revive
12-
text: "exported"
12+
text: "exported"
13+
- linters:
14+
- revive
15+
text: "empty-block"
16+
- linters:
17+
- revive
18+
text: "unused-parameter"
1319
linters:
1420
enable:
1521
- asciicheck

0 commit comments

Comments
 (0)