You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -176,15 +176,15 @@ format-ts-check:
176
176
177
177
.PHONY: lint-go-ops
178
178
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
180
180
181
181
.PHONY: lint-go-relayer
182
182
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
184
184
185
185
.PHONY: lint-go-test
186
186
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
0 commit comments