From 3cff868790c143a7de8962cbc846dfd4ccbd5f17 Mon Sep 17 00:00:00 2001 From: Ludovic Fernandez Date: Mon, 25 Mar 2024 15:20:53 +0100 Subject: [PATCH] fix: missing output format (#4574) --- pkg/config/output.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkg/config/output.go b/pkg/config/output.go index 672b1c7d42f5..a005213cfdce 100644 --- a/pkg/config/output.go +++ b/pkg/config/output.go @@ -22,10 +22,11 @@ const ( ) var AllOutputFormats = []string{ - OutFormatColoredLineNumber, - OutFormatLineNumber, OutFormatJSON, + OutFormatLineNumber, + OutFormatColoredLineNumber, OutFormatTab, + OutFormatColoredTab, OutFormatCheckstyle, OutFormatCodeClimate, OutFormatHTML,