forked from K-Phoen/grabana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yaml
54 lines (52 loc) · 807 Bytes
/
.golangci.yaml
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
linters:
enable-all: true
disable:
- musttag
- maintidx
- exhaustruct
- wrapcheck
- nolintlint
- wastedassign
- varnamelen
- forcetypeassert
- goerr113
- exhaustivestruct
- ireturn
- funlen
- forbidigo
- godot
- godox
- cyclop
- prealloc
- dupl
- lll
- maligned
- goconst
- depguard
- exhaustive
- wsl
- unparam
- gomoddirectives
- gofumpt
- nestif
- paralleltest
- testpackage
- gocognit
- gomnd
- tagliatelle
- nlreturn
# deprecated
- deadcode
- scopelint
- nosnakecase
- golint
- interfacer
- structcheck
- ifshort
- varcheck
linters-settings:
errcheck:
ignore: fmt:.*
run:
modules-download-mode: vendor
timeout: 3m