-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path.golangci.yml
52 lines (49 loc) · 1.22 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
version: "2"
run:
allow-parallel-runners: true
timeout: 5m
linters:
default: none
enable:
- govet
- ineffassign
- unused
- paralleltest
- staticcheck
- gocritic
- errchkjson
- rowserrcheck
- errcheck
- revive
settings:
errcheck:
exclude-functions: # To exclude more Close funcs, use `errcheck -verbose ./...` to get function names
- (*os.File).Close
- (io.Closer).Close
revive:
enable-all-rules: false
severity: error
rules: # From https://github.com/mgechev/revive/blob/master/defaults.toml
- name: atomic
- name: blank-imports
- name: context-as-argument
- name: context-keys-type
- name: dot-imports
- name: empty-block
- name: error-naming
- name: error-return
- name: error-strings
- name: errorf
- name: increment-decrement
- name: indent-error-flow
- name: range
- name: receiver-naming
- name: redefines-builtin-id
- name: superfluous-else
- name: time-naming
- name: unexported-return
- name: unreachable-code
- name: var-declaration
- name: var-naming
issues:
fix: false