forked from kakao/varlog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yaml
65 lines (59 loc) · 1.06 KB
/
.golangci.yaml
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
run:
timeout: 5m
skip-files:
- ".*\\.pb\\.go$"
- ".*_mock\\.go$"
linters:
disable-all: true
enable:
- depguard
- errcheck
- godot
- gofmt
- goimports
- gosimple
- govet
- ineffassign
- misspell
- revive
- staticcheck
- typecheck
- unused
linters-settings:
depguard:
rules:
main:
deny:
- pkg: golang.org/x/net/context
desc: Should be replaced by standard lib context package
godot:
exclude:
- "^ TODO"
- "^ FIXME"
- "^ NOTE"
- "^ NB"
- ":$"
- "^[ ]*[-*]"
goimports:
local-prefixes: github.com/kakao/varlog
misspell:
locale: US
revive:
confidence: 0.1
rules:
- name: unhandled-error
disabled: false
arguments:
- "fmt.Fprint"
- "fmt.Fprintf"
- "fmt.Fprintln"
- "fmt.Print"
- "fmt.Printf"
- "fmt.Println"
issues:
max-issues-per-linter: 0
max-same-issues: 0
exclude-rules:
- path: _test\.go
linters:
- gomnd