-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.golangci.yml
122 lines (103 loc) · 2.08 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
# golangci-lint configuration file
# see: https://github.com/golangci/golangci/wiki/Configuration
run:
timeout: 5m
skip-dirs:
- bin
linters-settings:
govet:
check-shadowing: true
golint:
min-confidence: 0
goimports:
local-prefixes: github.com/mercari/grpc-federation
gocyclo:
min-complexity: 10
maligned:
suggest-new: true
depguard:
list-type: blacklist
include-go-root: false
misspell:
locale: US
lll:
line-length: 120
nakedret:
max-func-lines: 0
gocritic:
disabled-checks:
- whyNoLint
- wrapperFunc
- ifElseChain
- unnamedResult
- paramTypeCombine
- hugeParam
- singleCaseSwitch
- octalLiteral
enabled-tags:
- performance
- style
- experimental
gci:
sections:
- "standard"
- "default"
- "prefix(github.com/mercari/grpc-federation)"
- "blank"
- "dot"
linters:
enable:
- bodyclose
- rowserrcheck
- stylecheck
- gosec
- unconvert
- asciicheck
- gofmt
- goimports
- misspell
- unparam
- dogsled
- nakedret
- gocritic
- godox
- whitespace
- goprintffuncname
- gomodguard
- godot
- nolintlint
- asasalint
- bidichk
- durationcheck
- importas
- tagliatelle
- tenv
- gci
disable:
- maligned
- prealloc
- gochecknoglobals
- wsl
- testpackage
- gocognit
- depguard
# Configuration of issue rules
issues:
# Excluding configuration per-path, per-linter, per-text and per-source
exclude-rules:
# Exclude lll issues for long lines with go:generate
- linters:
- lll
source: "^//go:generate "
# Exclude shadow checking on the variable named err and ctx
- text: "shadow: declaration of \"(err|ctx)\""
linters:
- govet
# Exclude godox check for TODOs, FIXMEs, and BUGs
- text: "Line contains TODO/BUG/FIXME:"
linters:
- godox
# Exclude some linters from running on tests files
- path: suite_test\.go
linters:
- typecheck