-
Notifications
You must be signed in to change notification settings - Fork 5
/
.golangci.yml
52 lines (49 loc) · 1.09 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
run:
tests: false
linters:
disable-all: true
enable:
- errcheck
- gofmt
- goimports
- govet
- ineffassign
- misspell
- revive
- typecheck
- unconvert
- unused
issues:
exclude-use-default: false
exclude-rules:
- path: cmd/patch2pr/
text: "should have( a package)? comment"
- path: internal/
text: "should have( a package)? comment"
linters-settings:
errcheck:
exclude-functions:
- fmt.Fprintln(os.Stdout)
goimports:
local-prefixes: github.com/bluekeyes/patch2pr
revive:
rules:
# enable all rules from golint
- name: context-keys-type
- name: time-naming
- name: var-declaration
- name: unexported-return
- name: errorf
- name: blank-imports
- name: context-as-argument
- name: dot-imports
- name: error-return
- name: error-strings
- name: error-naming
- name: exported
- name: increment-decrement
- name: var-naming
- name: package-comments
- name: range
- name: receiver-naming
- name: indent-error-flow