From fc1de635b70a46349756048f4a91756bcb88b73c Mon Sep 17 00:00:00 2001 From: vasyl-haievyi Date: Tue, 21 May 2024 16:10:41 +0200 Subject: [PATCH 1/2] Update golangci.jsonschema.json Include `html` as a valid value for the output format into schema for the configuration file. --- jsonschema/golangci.jsonschema.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jsonschema/golangci.jsonschema.json b/jsonschema/golangci.jsonschema.json index e7684df3f395..71a85bc04b87 100644 --- a/jsonschema/golangci.jsonschema.json +++ b/jsonschema/golangci.jsonschema.json @@ -432,7 +432,8 @@ "code-climate", "junit-xml", "github-actions", - "teamcity" + "teamcity", + "html" ] } }, From ce3e1398cd1808fd31375f9cf4b1acb0eaa5e88f Mon Sep 17 00:00:00 2001 From: Fernandez Ludovic Date: Tue, 21 May 2024 20:21:17 +0200 Subject: [PATCH 2/2] review: add missing elements --- .golangci.next.reference.yml | 1 + .golangci.reference.yml | 1 + jsonschema/golangci.jsonschema.json | 4 ++-- jsonschema/golangci.next.jsonschema.json | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.golangci.next.reference.yml b/.golangci.next.reference.yml index 9caca3d783ee..4d002e0205d8 100644 --- a/.golangci.next.reference.yml +++ b/.golangci.next.reference.yml @@ -66,6 +66,7 @@ output: # - `json` # - `colored-tab` # - `tab` + # - `html` # - `checkstyle` # - `code-climate` # - `junit-xml` diff --git a/.golangci.reference.yml b/.golangci.reference.yml index 6938157dacbb..116306b92c60 100644 --- a/.golangci.reference.yml +++ b/.golangci.reference.yml @@ -66,6 +66,7 @@ output: # - `json` # - `colored-tab` # - `tab` + # - `html` # - `checkstyle` # - `code-climate` # - `junit-xml` diff --git a/jsonschema/golangci.jsonschema.json b/jsonschema/golangci.jsonschema.json index 71a85bc04b87..db22554c1a16 100644 --- a/jsonschema/golangci.jsonschema.json +++ b/jsonschema/golangci.jsonschema.json @@ -428,12 +428,12 @@ "json", "colored-tab", "tab", + "html", "checkstyle", "code-climate", "junit-xml", "github-actions", - "teamcity", - "html" + "teamcity" ] } }, diff --git a/jsonschema/golangci.next.jsonschema.json b/jsonschema/golangci.next.jsonschema.json index 5bb029478c40..a07bfb6a789b 100644 --- a/jsonschema/golangci.next.jsonschema.json +++ b/jsonschema/golangci.next.jsonschema.json @@ -428,6 +428,7 @@ "json", "colored-tab", "tab", + "html", "checkstyle", "code-climate", "junit-xml",