From 5f73cc1540698f584ba4cbf8d9abe1a4f0372c6b Mon Sep 17 00:00:00 2001 From: "David J. Felix" Date: Thu, 30 Jul 2026 07:59:27 -0500 Subject: [PATCH] fix(oxc): add jsonc config variants to oxc family Add JSONC format file matches for oxlint and oxfmt --- src/api/json/catalog.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/json/catalog.json b/src/api/json/catalog.json index 9703fb30a5c..4f59e5769db 100644 --- a/src/api/json/catalog.json +++ b/src/api/json/catalog.json @@ -10601,13 +10601,13 @@ { "name": "oxfmt", "description": "Configuration file for Oxfmt, a high-performance formatter for the JavaScript ecosystem", - "fileMatch": ["**/.oxfmtrc.json"], + "fileMatch": ["**/.oxfmtrc.json", "**/.oxfmtrc.jsonc"], "url": "https://raw.githubusercontent.com/oxc-project/oxc/refs/heads/main/npm/oxfmt/configuration_schema.json" }, { "name": "oxlint", "description": "Configuration file for Oxlint, a high-performance linter for JavaScript and TypeScript built on the Oxc compiler stack", - "fileMatch": ["**/.oxlintrc.json"], + "fileMatch": ["**/.oxlintrc.json", "**/.oxlintrc.jsonc"], "url": "https://raw.githubusercontent.com/oxc-project/oxc/refs/heads/main/npm/oxlint/configuration_schema.json" }, {