Skip to content

Commit 67bbe07

Browse files
committed
remove lint exclusion of SA1029
Signed-off-by: Jon Carl <[email protected]>
1 parent 85a56f4 commit 67bbe07

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: golangci-lint
2222
uses: golangci/golangci-lint-action@v2
2323
with:
24-
args: -v --timeout=5m --exclude SA1029
24+
args: -v --timeout=5m
2525
skip-build-cache: true
2626
skip-go-installation: true
2727
skip-pkg-cache: true

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ test: ## Run tests.
66

77
.PHONY: lint
88
lint: ## Run golangci-lint.
9-
golangci-lint run -v --timeout=5m --exclude SA1029
9+
golangci-lint run -v --timeout=5m
1010

1111
.PHONY: help
1212
help:

0 commit comments

Comments
 (0)