-
Notifications
You must be signed in to change notification settings - Fork 10
/
.golangci.yaml
40 lines (33 loc) · 1.09 KB
/
.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
# This file contains all available configuration options
# with their default values.
# options for analysis running
run:
# https://github.com/golangci/golangci-lint/issues/2649
# enable go 1.17 linting, will not allow generics
go: "1.17"
# default concurrency is a available CPU number
concurrency: 4
# timeout for analysis, e.g. 30s, 5m, default is 1m
timeout: 2m
# exit code when at least one issue was found, default is 1
issues-exit-code: 1
linters:
enable:
- asciicheck
- deadcode
- depguard
- errcheck
- gofmt
- goimports
# all available settings of specific linters
linters-settings:
errcheck:
# report about not checking of errors in type assertions: `a := b.(MyStruct)`;
# default is false: such cases aren't reported by default.
check-type-assertions: false
# report about assignment of errors to blank identifier: `num, _ := strconv.Atoi(numStr)`;
# default is false: such cases aren't reported by default.
check-blank: false
gocyclo:
# minimal code complexity to report, 30 by default (but we recommend 10-20)
min-complexity: 18