-
Notifications
You must be signed in to change notification settings - Fork 6
/
golangci-lint-config.yaml
103 lines (93 loc) · 1.96 KB
/
golangci-lint-config.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
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
#(C) Copyright 2021-2024 Hewlett Packard Enterprise Development LP
run:
deadline: 240s
tests: true
build-tags: acceptance
linters-settings:
dupl:
threshold: 110
lll:
line-length: 128
gofumpt:
module-path: "github.com/HewlettPackard/hpegl-vmaas-terraform-resources"
goimports:
local-prefixes: "github.com"
godox:
keywords:
- OPTIMIZE
exhaustive:
default-signifies-exhaustive: true
funlen:
lines: 400
statements: 60
nestif:
# minimal complexity of if statements to report
min-complexity: 20
goconst:
ignore-tests: true
linters:
#enable-all: true
disable:
- gosec
- dupl
- wsl
- gci
- err113
- godot
- gomnd
- gochecknoinits
- gochecknoglobals
- errcheck
# - forbidigo
- testpackage
- nolintlint
- scopelint
- wrapcheck
- nilerr
- thelper
# Temporarily disabling these
- errorlint
- predeclared
- paralleltest
- gocritic
- forcetypeassert
- ifshort
- exhaustivestruct
- cyclop
- varnamelen
- ireturn
#Temporarily disabling wrapcheck
# - wrapcheck
# Disable the 'cyclop' cyclometric complexity linter. 'gocyclo' already
# covers cyclometric complexity, and 'cyclop' has no documentation to
# help with resolving the flagged lints
# - cyclop
issues:
exclude-dirs:
- vendor
exclude-rules:
# Exclude lll issues for long lines with go:generate
- linters:
- lll
source: "^//go:generate "
# ignore function length for tests as look up tables typically exceed.
- linters:
- funlen
- err113
path: _test\.go
# - linters:
# - dupl
# path: ".*generated.*go"
- linters:
- goconst
path: ".*generated.*go"
- linters:
- staticcheck
text: "SA9003:"
- linters:
- staticcheck
text: "SA1019:"
- linters:
- stylecheck
text: "ST1005:"
max-same-issues: 0