We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 916620a + 9310da1 commit f827bcbCopy full SHA for f827bcb
.github/workflows/golangci-lint.yml
@@ -33,6 +33,6 @@ jobs:
33
- name: golangci-lint
34
uses: golangci/golangci-lint-action@ec5d18412c0aeab7936cb16880d708ba2a64e1ae # tag=v6.2.0
35
with:
36
- version: v1.61.0
+ version: v1.63.4
37
args: --out-format=colored-line-number
38
working-directory: ${{matrix.working-directory}}
.golangci.yml
@@ -4,6 +4,19 @@ run:
4
# while if uncached!
5
timeout: 10m
6
7
+linters:
8
+ enable:
9
+ - errcheck
10
+ - gosimple
11
+ - govet
12
+ - ineffassign
13
+ - staticcheck
14
+ - unused
15
+ - testifylint
16
+ - iface
17
+ - exptostd
18
+ - nilnesserr
19
+
20
issues:
21
exclude-rules:
22
# Dot imports for gomega and ginkgo are allowed
0 commit comments