From 7b0dbe5d3122aec809b74170a04e4d7430f011e0 Mon Sep 17 00:00:00 2001 From: Pierre Brisorgueil Date: Fri, 20 Feb 2026 09:03:52 +0100 Subject: [PATCH] chore(vscode): enable Copilot for json files to match Vue stack --- .vscode/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index ba6e793db..1460e3fd8 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,6 +2,7 @@ "github.copilot.chat.codeGeneration.useInstructionFiles": true, "github.copilot.enable": { "javascript": true, - "markdown": true + "markdown": true, + "json": true } }