Skip to content

Commit 7c64c12

Browse files
committed
build(trigger): use root golangci-lint config
Point lint and lint-fix to repository main golangci config for consistency
1 parent 53bd5e0 commit 7c64c12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

workloads/trigger/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ help: ## Display this help.
88

99
.PHONY: lint
1010
lint: ## Run Linters
11-
golangci-lint run
11+
golangci-lint run -c ../.golangci.yml
1212

1313
.PHONY: lint-fix
1414
lint-fix: ## Run Linters and fix issues
15-
golangci-lint run --fix
15+
golangci-lint run --fix -c ../.golangci.yml
1616

1717
.PHONY: build
1818
build: ## Build the trigger

0 commit comments

Comments
 (0)