-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path.golangci.yaml
More file actions
36 lines (33 loc) · 688 Bytes
/
.golangci.yaml
File metadata and controls
36 lines (33 loc) · 688 Bytes
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
linters:
enable:
- asasalint
- asciicheck
- bidichk
- canonicalheader
- errcheck
- gci
- goimports
- gocritic
- gosec
- govet
- ineffassign
- misspell
- revive
- perfsprint
- staticcheck
- unconvert
- unused
- testifylint
linters-settings:
gci:
sections:
# include the default standard section, default section, and the "local"
# section which can be configured with
# 'goimports -local github.com/open-sauced/saucectl'
- standard
- default
- localmodule
run:
timeout: 5m
# attempts to automatically fix linting errors that are fixable by supported linters
fix: true