From 2db61842f70aaa754244dcbb82d015de81a5120b Mon Sep 17 00:00:00 2001 From: Michele Cereda Date: Tue, 19 Sep 2023 23:34:26 +0200 Subject: [PATCH] chore: json schemas inclusion --- examples/vscode.settings.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/examples/vscode.settings.json b/examples/vscode.settings.json index 33d3633..8014a87 100644 --- a/examples/vscode.settings.json +++ b/examples/vscode.settings.json @@ -42,6 +42,24 @@ "files.insertFinalNewline": true, "files.trimFinalNewlines": true, "git.autofetch": true, + "json.schemas": [ + { + "fileMatch": ["/.commitlintrc"], + "url": "https://json.schemastore.org/commitlintrc.json" + }, + { + "fileMatch": ["/.hadolint.yaml"], + "url": "https://raw.githubusercontent.com/hadolint/hadolint/master/contrib/hadolint.json" + }, + { + "fileMatch": ["/.pre-commit-config.yaml"], + "url": "https://json.schemastore.org/pre-commit-config.json" + }, + { + "fileMatch": ["/.yamllint.yaml"], + "url": "https://json.schemastore.org/yamllint.json" + } + ], "markdown.extension.orderedList.autoRenumber": false, "markdown.extension.orderedList.marker": "one", "markdown.extension.toc.levels": "2..6",