forked from lestrrat-go/file-rotatelogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
56 lines (50 loc) · 1 KB
/
.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:
linters-settings:
govet:
enable-all: true
disable:
- shadow
linters:
enable-all: true
disable:
- gomnd
- gocritic
- lll
- gochecknoinits
- wsl
- nakedret
- funlen
- gochecknoglobals
- gocognit
- godox
- gocyclo
- dupl
- gosec
- testpackage
- godot
- nestif
- goerr113
issues:
exclude-rules:
# not needed
- path: /*.go
text: "ST1003: should not use underscores in package names"
linters:
- stylecheck
- path: /*.go
text: "don't use an underscore in package name"
linters:
- golint
- path: /main.go
linters:
- errcheck
- path: internal/codegen/codegen.go
linters:
- errcheck
- path: /*_test.go
linters:
- errcheck
# Maximum issues count per one linter. Set to 0 to disable. Default is 50.
max-issues-per-linter: 0
# Maximum count of issues with the same text. Set to 0 to disable. Default is 3.
max-same-issues: 0