-
Notifications
You must be signed in to change notification settings - Fork 293
/
.golangci.yml
62 lines (57 loc) · 1.06 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
run:
timeout: 5m
go: "1.20"
skip-files:
- "zz_generated.*\\.go$"
- "pkg/util/fileutil/atomic_writer.go"
- "pkg/util/fileutil/atomic_writer_test.go"
linters-settings:
gocritic:
enabled-tags:
- performance
lll:
line-length: 200
misspell:
locale: US
staticcheck:
go: "1.20"
linters:
disable-all: true
enable:
- durationcheck
- exportloopref
- errcheck
- errorlint
- exhaustive
- goconst
- gocritic
- gocyclo
- gofmt
- goimports
- gosimple
- govet
- gosec
- ineffassign
- makezero
- misspell
- nilerr
- revive
- staticcheck
- stylecheck
- typecheck
- unused
- whitespace
# Run with --fast=false for more extensive checks (enables all linters)
fast: true
issues:
# default: 50
max-issues-per-linter: 0
exclude-rules:
- text: "unused-parameter: parameter '.*' seems to be unused, consider removing or renaming it as _"
linters:
- revive
# default: 3
max-same-issues: 0
severity:
# default: ''
default-severity: error