forked from gosnmp/gosnmp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
55 lines (52 loc) · 974 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
run:
timeout: 5m
linters:
enable:
- bodyclose
- dogsled
- dupl
- exportloopref # Replaces scopelint
- gochecknoglobals
- goconst
- gocritic
- goimports
- goprintffuncname
- gosec
- misspell
- nakedret
- nolintlint
- revive # Replaces golint
- unconvert
- unparam
- whitespace
# TODO the following linters
# - gocognit
# - gocyclo
# - goerr113
# - gomnd
# - lll
# - nestif
# - prealloc
disable:
# Disable soon to deprecated[1] linters that lead to false
# positives when build tags disable certain files[2]
# 1: https://github.com/golangci/golangci-lint/issues/1841
# 2: https://github.com/prometheus/node_exporter/issues/1545
- deadcode
- unused
- structcheck
- varcheck
linters-settings:
gofmt:
simplify: true
gocyclo:
min-complexity: 20
govet:
check-shadowing: true
issues:
exclude-rules:
- path: _test.go
linters:
- gochecknoglobals
- nolintlint