From 30975ec8045bfc6bd130f02758ee93332baabc6c Mon Sep 17 00:00:00 2001 From: qvalentin Date: Sun, 10 Mar 2024 19:09:27 +0100 Subject: [PATCH] fix(yamlls): add missing schemastore url --- internal/util/config.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/internal/util/config.go b/internal/util/config.go index b71bd94a..f0615ee4 100644 --- a/internal/util/config.go +++ b/internal/util/config.go @@ -41,7 +41,8 @@ var DefaultConfig = HelmlsConfiguration{ } type YamllsSchemaStoreSettings struct { - Enable bool `json:"enable"` + Enable bool `json:"enable"` + Url string `json:"url"` } type YamllsSettings struct { @@ -57,5 +58,6 @@ var DefaultYamllsSettings = YamllsSettings{ Hover: true, YamllsSchemaStoreSettings: YamllsSchemaStoreSettings{ Enable: true, + Url: "https://www.schemastore.org/api/json/catalog.json", }, }