From dae4e84bc58bbccdcda24dd4c148a4f0d7e078fd Mon Sep 17 00:00:00 2001 From: Peter Tripp Date: Wed, 25 Jun 2025 16:29:44 -0400 Subject: [PATCH] Explicitly associate files as JSONC (#33410) Fixes an issue when the zed repo was checked out to folder other than `zed` (e.g. `zed2`) files were incorrectly identified as JSON instead of JSONC. Release Notes: - N/A --- .zed/settings.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.zed/settings.json b/.zed/settings.json index b20d741659..1ef6bc28f7 100644 --- a/.zed/settings.json +++ b/.zed/settings.json @@ -40,6 +40,7 @@ }, "file_types": { "Dockerfile": ["Dockerfile*[!dockerignore]"], + "JSONC": ["assets/**/*.json", "renovate.json"], "Git Ignore": ["dockerignore"] }, "hard_tabs": false,