From 780bba1a0b91f058ebf32ebb6d90288e55989ead Mon Sep 17 00:00:00 2001 From: david may <1301201+wass3r@users.noreply.github.com> Date: Fri, 14 Jun 2024 11:30:35 -0500 Subject: [PATCH] fix(lint): use proper formats field (#585) Co-authored-by: Easton Crupper <65553218+ecrupper@users.noreply.github.com> --- .golangci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.golangci.yml b/.golangci.yml index f73f9d70..500ac3ee 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -8,7 +8,10 @@ # outputs it results from the linters it executes. output: # colored-line-number|line-number|json|tab|checkstyle|code-climate, default is "colored-line-number" - format: colored-line-number + formats: + - format: json + path: stderr + - format: colored-line-number # print lines of code with issue, default is true print-issued-lines: true