-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.golangci.yml
More file actions
146 lines (142 loc) · 2.74 KB
/
.golangci.yml
File metadata and controls
146 lines (142 loc) · 2.74 KB
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
version: "2"
linters:
default: none
enable:
- asciicheck
- bidichk
- bodyclose
- containedctx
- contextcheck
- cyclop
- depguard
- dupword
- dupl
- err113
- errcheck
- errorlint
- forbidigo
- goconst
- gocritic
- gocyclo
- gosec
- govet
- ineffassign
- makezero
- misspell
- nilerr
- nilnil
- noctx
- nolintlint
- paralleltest
- prealloc
- predeclared
- revive
- rowserrcheck
- sqlclosecheck
- staticcheck
- tagliatelle
- thelper
- tparallel
- durationcheck
- unparam
- unused
- wastedassign
- whitespace
- wrapcheck
- wsl_v5
settings:
cyclop:
max-complexity: 50
dupl:
threshold: 150
depguard:
rules:
main:
list-mode: lax
files:
- $all
deny:
- pkg: io/ioutil
desc: "deprecated; use io or os"
goconst:
min-len: 3
min-occurrences: 4
gocyclo:
min-complexity: 50
forbidigo:
forbid:
- pattern: "^log\\."
msg: "avoid std log; use ui/logger"
revive:
rules:
- name: blank-imports
- name: empty-lines
- name: errorf
- name: import-shadowing
- name: range
- name: unnecessary-stmt
tagliatelle:
case:
rules:
json: snake
yaml: snake
overrides:
- pkg: github.com/dedene/frontapp-cli/internal/cmd
ignore: true
- pkg: github.com/dedene/frontapp-cli/internal/auth
ignore: true
wsl_v5:
allow-first-in-block: true
allow-whole-block: false
branch-max-lines: 2
disable:
- assign
- decl
govet:
enable-all: true
disable:
- fieldalignment
exclusions:
presets:
- std-error-handling
rules:
- path: _test\.go
linters:
- errcheck
- cyclop
- gocyclo
- gosec
- dupl
- goconst
- tagliatelle
- paralleltest
- path: internal/cmd/.*\.go
linters:
- err113
- wrapcheck
- dupl
- wsl_v5
- tagliatelle
- path: internal/auth/.*\.go
linters:
- tagliatelle
- path: cmd/.*\.go
linters:
- wsl_v5
- linters:
- errcheck
text: "Error return value of `fmt\\.Fprint"
- linters:
- errcheck
text: "Error return value of .*.Close"
- linters:
- staticcheck
text: "QF1001"
formatters:
enable:
- gofumpt
- goimports
settings:
goimports:
local-prefixes:
- github.com/dedene/frontapp-cli