-
Notifications
You must be signed in to change notification settings - Fork 3
/
.golangci.yml
61 lines (52 loc) · 942 Bytes
/
.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
---
run:
timeout: 30m
concurrency: 2
issue-exit-code: 1
tests: true
allow-parallel-runners: true
output:
path-prefix: "backend"
linters:
disable-all: true
enable:
- deadcode
- depguard
- errcheck
- exportloopref
- goconst
- gofmt
- goimports
- goprintffuncname
- gosec
- gosimple
- govet
- ineffassign
# - lll - TODO: enable later
- misspell
- nakedret
- nolintlint
- rowserrcheck
- staticcheck
- structcheck
- stylecheck
- typecheck
- unconvert
- unparam
- unused
- varcheck
- whitespace
linters-settings:
gosec:
excludes:
- G109 # Integer overflow
- G204 # Subprocess arguments
- G203 # Escape HTML
- G402 # Insecure skip verify
- G505 # Allow sha1
- G401 # Allow sha1
config:
G306: "0660"
misspell:
ignore-words:
- payed # Requires alter table...