We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a1bc2f commit bc77d03Copy full SHA for bc77d03
.github/workflows/workflow.yml
@@ -40,5 +40,4 @@ jobs:
40
- name: golangci-lint
41
uses: golangci/golangci-lint-action@v8
42
with:
43
- version: latest
44
- args: --disable noinlineerr,wsl_v5
+ version: latest
.golangci.yaml
@@ -2,6 +2,8 @@ version: "2"
2
linters:
3
default: all
4
disable:
5
+ - noinlineerr
6
+ - wsl_v5
7
- copyloopvar
8
- cyclop
9
- depguard
Makefile
@@ -7,7 +7,7 @@ linters-install:
}
lint: linters-install
10
- golangci-lint --disable noinlineerr,wsl_v5 run
+ golangci-lint run
11
12
test:
13
$(GOCMD) test -cover -race ./...
0 commit comments