Skip to content

Commit e93d47b

Browse files
authored
chore: golangci-lint configuration with explicit linter list (#293)
Signed-off-by: Chris Gianelloni <[email protected]>
1 parent 624c00f commit e93d47b

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.golangci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
issues:
2+
exclude-dirs:
3+
- docs
4+
max-issues-per-linter: 0
5+
max-same-issues: 0
6+
linters:
7+
enable:
8+
- errcheck
9+
- gosec
10+
- gosimple
11+
- govet
12+
- ineffassign
13+
- staticcheck
14+
- unused
15+
run:
16+
issues-exit-code: 1
17+
tests: false
18+
timeout: 10m

0 commit comments

Comments
 (0)