-
Notifications
You must be signed in to change notification settings - Fork 1
/
.golangci.yml
72 lines (68 loc) · 1.27 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Documentation https://golangci-lint.run/usage/linters
issues:
new: true
fix: true
new-from-rev: 1de9aaed0441349ba34f1d3cfb18cc2b36114bc5
run:
timeout: 10m
issues-exit-code: 1
tests: false
skip-dirs-use-default: true
linters:
enable:
- bodyclose
- depguard
- dogsled
#- dupl
- errcheck
- errname
- exhaustive
- exportloopref
- goconst
- gocritic #TODO: https://go-critic.com/overview.html
- gocyclo
- gofmt
- goimports
- gomnd
- gosec
- gosimple
- govet
- grouper
- ineffassign
- misspell
- nilerr
- nilnil
- nlreturn
- nolintlint
- predeclared
- staticcheck
- tagliatelle # remove this for existing projects
- typecheck
- unconvert
- unused
- whitespace
- wsl
linters-settings:
gocyclo:
min-complexity: 20
goimports:
local-prefixes: github.com/RocketChat/airlock
gomnd:
ignored-functions:
- "utils.Generate*"
- "core.AddMigration"
misspell:
locale: US
nlreturn:
block-size: 2
tagliatelle:
case:
use-field-name: true
rules:
json: camel
yaml: camel
bson: camel
wsl:
allow-assign-and-call: false
allow-multiline-assign: false
force-err-cuddling: true