From bd923d4ba20e639ba0282b52fd3a09a39505b5a0 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Fri, 30 Dec 2022 11:08:24 -0600 Subject: [PATCH] vscode: add schemas to renovate.json, .lintstagedrc.json --- .vscode/settings.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 4a7155a74..d7ca13345 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -5,5 +5,15 @@ "*.conf.template": "properties" }, "files.eol": "\n", - "files.insertFinalNewline": false + "files.insertFinalNewline": false, + "json.schemas": [ + { + "fileMatch": [".lintstagedrc.json"], + "url": "https://json.schemastore.org/lintstagedrc.schema.json" + }, + { + "fileMatch": ["renovate.json"], + "url": "https://docs.renovatebot.com/renovate-schema.json" + } + ] }