We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b0047f commit b69156eCopy full SHA for b69156e
.golangci.yml
@@ -1,8 +1,33 @@
1
-run:
2
- modules-download-mode: vendor
3
-
4
-# Run only staticcheck for now. Additional linters will be enabled one-by-one.
5
linters:
6
enable:
7
- - staticcheck
8
- disable-all: true
+ - asciicheck
+ - deadcode
+ - depguard
+ - errcheck
+ - errorlint
+ - gofmt
9
+ - goimports
10
+ - gosec
11
+ - gocritic
12
+ - importas
13
+ - prealloc
14
+ - revive
15
+ - misspell
16
+ - stylecheck
17
+ - tparallel
18
+ - unconvert
19
+ - unparam
20
+ - whitespace
21
+output:
22
+ uniq-by-line: false
23
+issues:
24
+ exclude-rules:
25
+ - path: _test\.go
26
+ linters:
27
28
29
+ max-issues-per-linter: 0
30
+ max-same-issues: 0
31
+run:
32
+ issues-exit-code: 1
33
+ timeout: 10m
0 commit comments