Skip to content

Commit e5a80c8

Browse files
committed
chore: extended-junit-xml -> junit-xml-extended
1 parent 11e8242 commit e5a80c8

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.golangci.next.reference.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ output:
7070
# - `checkstyle`
7171
# - `code-climate`
7272
# - `junit-xml`
73-
# - `extended-junit-xml`
73+
# - `junit-xml-extended`
7474
# - `github-actions`
7575
# - `teamcity`
7676
# - `sarif`

jsonschema/golangci.next.jsonschema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@
520520
"checkstyle",
521521
"code-climate",
522522
"junit-xml",
523-
"extended-junit-xml",
523+
"junit-xml-extended",
524524
"github-actions",
525525
"teamcity",
526526
"sarif"

pkg/config/output.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const (
1717
OutFormatCodeClimate = "code-climate"
1818
OutFormatHTML = "html"
1919
OutFormatJunitXML = "junit-xml"
20-
OutFormatExtendedJunitXML = "extended-junit-xml"
20+
OutFormatJunitXMLExtended = "junit-xml-extended"
2121
OutFormatGithubActions = "github-actions" // Deprecated
2222
OutFormatTeamCity = "teamcity"
2323
OutFormatSarif = "sarif"
@@ -33,7 +33,7 @@ var AllOutputFormats = []string{
3333
OutFormatCodeClimate,
3434
OutFormatHTML,
3535
OutFormatJunitXML,
36-
OutFormatExtendedJunitXML,
36+
OutFormatJunitXMLExtended,
3737
OutFormatGithubActions,
3838
OutFormatTeamCity,
3939
OutFormatSarif,

pkg/printers/printer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ func (c *Printer) createPrinter(format string, w io.Writer) (issuePrinter, error
131131
p = NewHTML(w)
132132
case config.OutFormatJunitXML:
133133
p = NewJunitXML(false, w)
134-
case config.OutFormatExtendedJunitXML:
134+
case config.OutFormatJunitXMLExtended:
135135
p = NewJunitXML(true, w)
136136
case config.OutFormatGithubActions:
137137
p = NewGitHubAction(w)

0 commit comments

Comments
 (0)