Skip to content

Commit cc16497

Browse files
authored
Merge branch 'main' into return-errors
2 parents c8a6785 + e5f1a0a commit cc16497

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/verify.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,3 @@ jobs:
2929
uses: golangci/golangci-lint-action@v3
3030
with:
3131
version: v1.53
32-
args: --timeout=5m

.golangci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
11
run:
22
skip-dirs:
33
- examples/*.go
4+
timeout: "5m"
5+
# will not run golangci-lint against *_test.go
6+
tests: false
7+
issues:
8+
exclude-rules:
9+
# excluding error checks from all the .go files
10+
- path: ./*.go
11+
linters:
12+
- errcheck
13+

0 commit comments

Comments
 (0)