Skip to content

Commit 1f69059

Browse files
committed
Update lint settings
1 parent 114bff5 commit 1f69059

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.golangci.yaml .github/golangci.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -114,3 +114,6 @@ linters-settings:
114114
godot:
115115
scope: all
116116
period: false
117+
gosec:
118+
excludes:
119+
- G115 # We tolerate casting shenanigans

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ test:
1212

1313
.PHONY: lint
1414
lint:
15-
$(golangci_lint) run --config .golangci.yaml
15+
$(golangci_lint) run --config .github/golangci.yaml
1616

1717
.PHONY: gofumpt
1818
gofumpt:

0 commit comments

Comments
 (0)