-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.golangci.yml
130 lines (130 loc) · 2.9 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
run:
build-tags:
- integration
linters-settings:
gocyclo:
min-complexity: 30
gocritic:
enabled-tags:
- diagnostic
- experimental
- opinionated
- style
disabled-checks:
- dupImport # https://github.com/go-critic/go-critic/issues/845
- ifElseChain
- octalLiteral
- paramTypeCombine
- sloppyReassign
- unnamedResult
- whyNoLint
- wrapperFunc
goimports:
local-prefixes: go.avito.ru/av/service-tariff
govet:
check-shadowing: true
golint:
min-confidence: 0.8
lll:
line-length: 140
staticcheck:
# https://staticcheck.io/docs/options#checks
checks: [ "all" ]
wrapcheck:
ignoreSigs:
- .Errorf(
- errors.New(
- errors.Unwrap(
- .ProcessSequence(
- .Wrap(
- .Wrapf(
- .WithMessage(
- .WithMessagef(
- .WithStack(
wsl:
# See https://github.com/bombsimon/wsl/blob/master/doc/configuration.md for
# documentation of available settings. These are the defaults for
# `golangci-lint`.
allow-assign-and-anything: true
allow-assign-and-call: true
allow-cuddle-declarations: true
allow-trailing-comment: true
linters:
enable:
- gocyclo
- asciicheck
- bodyclose
- errorlint
- exhaustive
- goconst
- gofmt
- goimports
- govet
- nilerr
- ineffassign
- wrapcheck
- unconvert
- unparam
- unused
- staticcheck
- wastedassign
- whitespace
disable:
- gochecknoglobals
- golint
- gocritic
- wsl
issues:
# Excluding configuration per-path, per-linter, per-text and per-source
exclude:
- only cuddled expressions if assigning variable or using from line above
- ranges should only be cuddled with assignments used in the iteration
- defer statements should only be cuddled with expressions on same variable
- append only allowed to cuddle with appended value
- if statements should only be cuddled with assignments used in the if statement itself
exclude-rules:
# Exclude some linters from running on tests files.
- path: _test\.go
linters:
- gocyclo
- asciicheck
- bodyclose
- errorlint
- exhaustive
- goconst
- gocritic
- gofmt
- goimports
- govet
- nilerr
- ineffassign
- wrapcheck
- unconvert
- unparam
- unused
- staticcheck
- wastedassign
- wsl
- whitespace
- path: _mock\.go
linters:
- gocyclo
- asciicheck
- bodyclose
- errorlint
- exhaustive
- goconst
- gocritic
- gofmt
- goimports
- govet
- nilerr
- ineffassign
- wrapcheck
- unconvert
- unparam
- unused
- staticcheck
- wastedassign
- wsl
- whitespace