-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
.golangci.yaml
78 lines (76 loc) · 1.38 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
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
run:
timeout: 5m
modules-download-mode: readonly
linters:
disable-all: true
fast: false
enable:
- bodyclose
- dogsled
- durationcheck
- errcheck
- copyloopvar
- govet
- gosimple
- gofmt
- gofumpt
- goconst
- goimports
- mnd
- gocyclo
- ineffassign
- lll
- prealloc
- revive
- staticcheck
- typecheck
- unused
- whitespace
- wastedassign
- unconvert
- misspell
- errorlint
- errname
- goheader
- zerologlint
- tagliatelle
- spancheck
- perfsprint
- promlinter
- predeclared
- nestif
- nilnil
- makezero
- grouper
- gosec
- dupl
- cyclop
- copyloopvar
linters-settings:
govet:
enable-all: true
whitespace:
multi-func: true
lll:
line-length: 160
# mnd:
# checks:
# - case
# - condition
# - return
goconst:
ignore-tests: true
gocyclo:
# recommend 10-20
min-complexity: 50
goimports:
local-prefixes: github.com/almeidapaulopt/tsdproxy # Put imports beginning with prefix after 3rd-party packages
misspell: # Finds commonly misspelled English words in comments
locale: US
goheader:
values:
const:
AUTHOR: Paulo Almeida <[email protected]>
template: |-
SPDX-FileCopyrightText: {{ YEAR }} {{ AUTHOR }}
SPDX-License-Identifier: MIT