-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
74 lines (70 loc) · 2.17 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
# options for analysis running
run:
# default concurrency is a available CPU number
concurrency: 4
# timeout for analysis, e.g. 30s, 5m, default is 1m
deadline: 10m
# all available settings of specific linters
linters-settings:
errcheck:
# report about not checking of errors in type assetions: `a := b.(MyStruct)`;
check-type-assertions: true
# report about assignment of errors to blank identifier: `num, _ := strconv.Atoi(numStr)`;
check-blank: true
govet:
# report about shadowed variables
check-shadowing: false
gocyclo:
# minimal code complexity to report, 30 by default (but we recommend 10-20)
min-complexity: 30
lll:
# max line length, lines longer will be reported. Default is 120.
# '\t' is counted as 1 character by default, and can be changed with the tab-width option
line-length: 200
unused:
# treat code as a program (not a library) and report unused exported identifiers
check-exported: false
unparam:
# Inspect exported functions, default is false. Set to true if no external program/library imports your code.
check-exported: true
nakedret:
# make an issue if func has more lines of code than this setting and it has naked returns
max-func-lines: 60
prealloc:
# Report preallocation suggestions only on simple loops that have no returns/breaks/continues/gotos in them.
simple: true
range-loops: true # Report preallocation suggestions on range loops
for-loops: false # Report preallocation suggestions on for loops
linters:
disable-all: true
enable:
- govet
- errcheck
- gocyclo
- structcheck
- varcheck
- ineffassign
- deadcode
- typecheck
- golint
- interfacer
- unconvert
- goconst
- gocyclo
- staticcheck
- unused
- gosimple
- gofmt
- gosec
- lll
- megacheck
- gocritic
fast: false
issues:
# Independently from option `exclude` we use default exclude patterns,
# it can be disabled by this option. To list all
# excluded by default patterns execute `golangci-lint run --help`.
# Default value for this option is true.
exclude-use-default: true
exclude:
- "File is not `goimports`-ed"