-
Notifications
You must be signed in to change notification settings - Fork 2
/
.golangci.yml
150 lines (146 loc) · 3.39 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
run:
go: "1.17"
timeout: 10m
skip-files:
- expt/main.go
output:
format: colored-line-number
linters:
enable-all: true
disable:
- decorder
- exhaustruct
- cyclop
- exhaustive
- exhaustivestruct
- exhaustruct
- funlen
- gochecknoglobals
- gocyclo
- godox
- gofumpt
- golint
- interfacer
- lll
- maintidx
- ireturn
- maligned
- nlreturn
- nolintlint
- prealloc
- promlinter
- scopelint
- tagliatelle
- testpackage
- paralleltest
- tparallel
- containedctx
- varnamelen
- wrapcheck
- wsl
- forbidigo
- gomnd
linters-settings:
decorder:
dec-order:
- type
- const
- var
- func
disable-dec-order-check: false
disable-init-func-first-check: false
dupl:
threshold: 100
errcheck: # Report about not checking of errors in type assertions: `a := b.(MyStruct)`.
check-type-assertions: true
goconst:
min-len: 2 # Minimal length of string constant.
min-occurrences: 2 # Minimum occurrences of constant string count to trigger issue.
ignore-tests: true
match-constant: false # Look for existing constants matching the values.
numbers: true # Search also for duplicated numbers.
min: 2 # Minimum value, only works with goconst.numbers
max: 2 # Maximum value, only works with goconst.numbers
revive:
ignore-generated-header: true
severity: warning
confidence: 0.8
rules:
- name: atomic
- name: context-as-argument
- name: context-keys-type
- name: defer
- name: dot-imports
- name: empty-block
- name: error-naming
- name: error-return
- name: error-strings
- name: errorf
- name: increment-decrement
- name: modifies-parameter
- name: modifies-value-receiver
- name: package-comments
- name: range
- name: receiver-naming
- name: redefines-builtin-id
- name: superfluous-else
- name: time-naming
- name: unreachable-code
- name: unused-parameter
- name: unused-receiver
- name: var-declaration
- name: var-naming
gomnd:
ignored-numbers:
- "0o600"
- "0o644"
- "0o655"
- "0o666"
- "0o770"
- "0o755"
- "0o765"
- "0o777"
ignored-functions:
- "args.Error"
- "strconv.ParseInt"
gosimple:
go: "1.17"
checks:
- "all"
staticcheck:
go: "1.17"
checks:
- "all"
goimports:
local-prefixes: github.com/odpf/dex
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/odpf/dex) # 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
- dupl
- path: cli
linters:
- forbidigo
- contextcheck
severity:
default-severity: error