generated from kyma-project/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.golangci.yaml
45 lines (45 loc) · 908 Bytes
/
.golangci.yaml
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
run:
modules-download-mode: readonly
timeout: 10m
issues:
exclude:
# Check this issue for more info: https://github.com/kyoh86/scopelint/issues/4
- Using the variable on range scope `tc` in function literal
- Using the variable on range scope `tt` in function literal
linters:
enable-all: true
disable:
# Depreacted linters
- gomnd
- execinquery
- exportloopref
# Linters to be enabled after fixing the issues
- cyclop
- depguard
- exhaustruct
- forcetypeassert
- funlen
- gochecknoglobals
- goconst
- godot
- godox
- err113
- gofumpt
- ireturn
- lll
- maintidx
- mirror
- nestif
- nonamedreturns
- paralleltest
- perfsprint
- prealloc
- protogetter
- tagliatelle
- testifylint
- testpackage
- thelper
- tparallel
- varnamelen
- wrapcheck
- nlreturn