-
Notifications
You must be signed in to change notification settings - Fork 153
/
.golangci.yml
157 lines (156 loc) · 3.49 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
run:
timeout: 5m
skip-dirs:
- api/proto
- api/third_party
output:
format: colored-line-number
linters:
enable-all: true
disable:
# Rules to review
- varnamelen
- wrapcheck
- tagliatelle
- paralleltest
- nlreturn
- gochecknoglobals
- exhaustivestruct
- forcetypeassert
- exhaustive
- wsl
- scopelint
- promlinter
- interfacer
- godox
- godot
- errcheck
- maintidx
- errchkjson
- nosnakecase
- nonamedreturns
- exhaustruct
- rowserrcheck
- structcheck
- wastedassign
- gomoddirectives
# Following linters should be enabled after fixing the code
- cyclop
- ireturn
- goerr113
- prealloc
- nestif
- lll
- maligned
- golint
- gocognit
- funlen
- gocyclo
- dupl
- nolintlint
- musttag
- interfacebloat
linters-settings:
gofumpt:
lang-version: "1.19"
extra-rules: true
revive:
severity: error
rules:
- name: atomic
- name: context-as-argument
# - name: context-keys-type #perf issue
- name: defer
- name: dot-imports
- name: empty-block
- name: error-naming
- name: error-return
# - name: error-strings
- name: early-return
# - name: errorf #perf issue
# - name: exported
- name: if-return
- name: increment-decrement
- name: indent-error-flow
# - name: flag-parameter
- name: modifies-parameter
# - name: modifies-value-receiver #perf issue
- name: package-comments
- name: range
- name: receiver-naming
- name: redefines-builtin-id
- name: superfluous-else
# - name: time-naming #perf issue
- name: unexported-naming
# - name: var-declaration #perf issue
- name: var-naming
- name: unused-receiver
- name: unused-parameter
- name: useless-break
- name: unnecessary-stmt
- name: unreachable-code
goconst:
ignore-tests: true
numbers: true
gomnd:
ignored-numbers: # Why we have a big range of file permissions
- "0o600"
- "0o644"
- "0o655"
- "0o666"
- "0o770"
- "0o755"
- "0o765"
- "0o777"
ignored-functions:
- "survey.MinLength"
- "survey.MaxLength"
- "args.Error"
gosec:
excludes:
- G101
gosimple:
go: "1.19"
checks:
- "all"
- "-S1002"
staticcheck:
go: "1.19"
checks:
- "all"
- "-SA1019"
goimports:
local-prefixes: github.com/raystack/optimus
gci:
sections:
- standard # Captures all standard packages if they do not match another section.
- default # Contains all imports that could not be matched to another section type.
- prefix(github.com/raystack/optimus) # Groups all imports with the specified Prefix.
gocritic:
disabled-checks:
- ifElseChain
- singleCaseSwitch
enabled-tags:
- diagnostic
# - style
# - opinionated
- performance
unparam:
# Inspect exported functions.
# XXX: if you enable this setting, unparam will report a lot of false-positives in text editors:
check-exported: true
issues:
exclude-rules:
# Exclude some linters from running on tests files.
- path: _test\.go
linters:
- gocritic
- contextcheck
- path: tests
linters:
- gocritic
- gomnd
- unparam
- testpackage
severity:
default-severity: error