-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.golangci.yml
More file actions
48 lines (45 loc) · 1.05 KB
/
.golangci.yml
File metadata and controls
48 lines (45 loc) · 1.05 KB
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
version: "2"
output:
formats:
tab:
print-linter-name: true
linters:
default: none
enable:
- misspell
- errorlint
- unused
- bodyclose
# TODO: Enable revive after fixing all the issues
# - revive
- govet
- ineffassign
- misspell
- staticcheck
- unused
# settings:
# revive:
# confidence: 0.8
# severity: warning
# rules:
# - name: blank-imports
# - name: context-as-argument
# - name: context-keys-type
# - name: error-return
# - name: error-strings
# - name: error-naming
# - name: exported
# - name: if-return
# - name: increment-decrement
# - name: var-naming
# - name: var-declaration
# - name: range
# - name: receiver-naming
# - name: time-naming
# - name: unexported-return
# - name: indent-error-flow
# - name: errorf
formatters:
enable:
- goimports
- gofmt