-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.golangci.yml
39 lines (38 loc) · 981 Bytes
/
.golangci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
run:
timeout: 5m
skip-dirs:
- plugins/parsers/influx
skip-files:
- "plugins/parsers/influx/*"
linters:
fast: false
disable-all: false
enable:
- gofmt
- govet
- errcheck
- staticcheck
- unused
- gosimple
# - structcheck -- deprecated
# - varcheck -- deprecated
- ineffassign
# - deadcode -- deprecated
- typecheck
# - revive
# - golint -- deprecated, owner archived repo, replaced by 'revive'
- gosec
# - interfacer -- deprecated, owner archived repo
- misspell
- unparam
- prealloc
# - scopelint -- deprecated
- exportloopref
- gocritic
- asciicheck
- errorlint
- unconvert
# - wrapcheck
# - goconst
# - nolintlint # different linters with different GOOS fire issues GOOS=linux 'structcheck' unused, under GOOS=darwin it's required
# - ifshort # doesn't really work... (x := someFunc(); if x ... then x used later, linter complains var isn't used)