We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4487cd0 commit 8bc165bCopy full SHA for 8bc165b
1 file changed
.golangci.yaml
@@ -1,15 +1,6 @@
1
# prerequisite:
2
# [install golangci-lint](https://golangci-lint.run/usage/install/#local-installation)
3
-run:
4
- # timeout for analysis, e.g. 30s, 5m, default is 1m
5
- timeout: 5m
6
-
7
- skip-files:
8
- - .peg\.go
9
- - .*\.pb\.go
10
- skip-dirs:
11
- - vendor
12
+version: "2"
13
linters:
14
enable:
15
- deadcode
@@ -40,9 +31,3 @@ linters:
40
31
- goconst # we allow repeated values to go un-const'd
41
32
- lll # we allow any line length
42
33
- unparam # we allow function calls to name unused parameters
43
44
-issues:
45
- exclude-rules:
46
- # Probably some broken linter for generics?
47
- - linters: [ revive ]
48
- text: 'receiver-naming: receiver name \S+ should be consistent with previous receiver name \S+ for invalid-type'
0 commit comments