-
Notifications
You must be signed in to change notification settings - Fork 1
/
.golangci.json
50 lines (50 loc) · 1.14 KB
/
.golangci.json
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
{
"_ignore": "DO NOT MODIFY THIS FILE: https://github.com/honestbank/.github/blob/main/docs/about.md",
"run": {
"skip-files": [
"graph"
],
"skip-dirs": [
".*/generated/*"
],
"skip-dirs-use-default": true,
"tests": true
},
"linters": {
"enable": [
"deadcode",
"errcheck",
"gosimple",
"govet",
"ineffassign",
"staticcheck",
"structcheck",
"typecheck",
"unused",
"varcheck",
"gofmt",
"goimports",
"nestif",
"ifshort",
"asciicheck",
"exhaustive",
"exportloopref",
"forbidigo",
"gocyclo",
"gofmt",
"goimports",
"ifshort",
"makezero",
"misspell",
"nakedret",
"nestif",
"nilerr",
"nlreturn",
"nolintlint",
"testpackage",
"unconvert",
"wastedassign",
"whitespace"
]
}
}