-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
.golangci.yml
109 lines (106 loc) · 2.28 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
run:
timeout: 5m
linters:
enable-all: true
disable:
# deprecated
- exportloopref # deprecated 1.60.2
# unwanted
- cyclop
- depguard
- dupl
- err113
- exhaustruct
- forcetypeassert
- funlen
- gomoddirectives
- gosec
- inamedparam
- ireturn
- maintidx
- mnd
- musttag
- nestif
- nonamedreturns
- paralleltest
- recvcheck
- varnamelen
- wsl
linters-settings:
gci:
custom-order: true
sections:
- standard
- localModule
- default
gocognit:
# minimal code complexity to report, 30 by default
min-complexity: 180
goconst:
# Minimum occurrences of constant string count to trigger issue.
min-occurrences: 25
# Ignore test files.
ignore-tests: true
gocritic:
enabled-checks:
- ruleguard
settings:
ruleguard:
rules: '${configDir}/internal/ruleguard/*.go'
gocyclo:
# minimal code complexity to report, 30 by default
min-complexity: 100
gofumpt:
extra-rules: true
govet:
enable-all: true
disable:
- fieldalignment
- shadow
revive:
rules:
# defaults
- name: blank-imports
- name: context-as-argument
- name: context-keys-type
- name: dot-imports
- name: empty-block
- name: error-naming
- name: error-return
- name: error-strings
- name: errorf
- name: exported
- name: increment-decrement
- name: indent-error-flow
- name: package-comments
- name: range
- name: receiver-naming
- name: redefines-builtin-id
- name: superfluous-else
- name: time-naming
- name: unexported-return
- name: unreachable-code
- name: unused-parameter
- name: var-declaration
- name: var-naming
# additionals
- name: confusing-naming
- name: import-alias-naming
- name: import-shadowing
- name: unhandled-error
tagliatelle:
case:
rules:
json: snake
tfsdk: snake
issues:
exclude-rules:
- text: "github.com/jeremmfr/terraform-provider-junos/internal"
linters:
- wrapcheck
- path: "internal/providersdk/"
linters:
- goconst
- text: "string `description \"` has "
linters:
- goconst