Skip to content

Commit 6dfdc54

Browse files
committed
update Makefile
1 parent 821a43c commit 6dfdc54

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,15 +176,15 @@ format-ts-check:
176176

177177
.PHONY: lint-go-ops
178178
lint-go-ops:
179-
cd ./ops && golangci-lint --config ../.golangci.yml --color=always --out-format checkstyle run > golangci-lint-ops-report.xml
179+
cd ./ops && golangci-lint --config ../.golangci.yml --color=always --output.checkstyle.path golangci-lint-ops-report.xml run
180180

181181
.PHONY: lint-go-relayer
182182
lint-go-relayer:
183-
cd ./relayer && golangci-lint --config ../.golangci.yml --color=always --out-format checkstyle run --fix
183+
cd ./relayer && golangci-lint --config ../.golangci.yml --color=always --output.checkstyle.path stdout run --fix
184184

185185
.PHONY: lint-go-test
186186
lint-go-test:
187-
cd ./integration-tests && golangci-lint --config ../.golangci.yml --color=always --out-format checkstyle run > golangci-lint-integration-tests-report.xml
187+
cd ./integration-tests && golangci-lint --config ../.golangci.yml --color=always --output.checkstyle.path golangci-lint-integration-tests-report.xml run
188188

189189
.PHONY: test-go
190190
test-go: test-unit-go test-unit-go-race test-integration-go

0 commit comments

Comments
 (0)