r/o
1
run:
2
timeout: 5m
3
allow-parallel-runners: true
4
5
issues:
6
# don't skip warning about doc comments
7
# don't exclude the default set of lint
8
exclude-use-default: false
9
# restore some of the defaults
10
# (fill in the rest as needed)
11
exclude-rules:
12
- path: "api/*"
13
linters:
14
- lll
15
- path: "internal/*"
16
linters:
17
- dupl
18
- lll
19
linters:
20
disable-all: true
21
enable:
22
- dupl
23
- errcheck
24
- copyloopvar
25
- ginkgolinter
26
- goconst
27
- gocyclo
28
- gofmt
29
- goimports
30
- gosimple
31
- govet
32
- ineffassign
33
- lll
34
- misspell
35
- nakedret
36
- prealloc
37
- revive
38
- staticcheck
39
- typecheck
40
- unconvert
41
- unparam
42
- unused
43
44
linters-settings:
45
revive:
46
rules:
47
- name: comment-spacings
48