From 9f0a89626be2c5c9f901ebd49ee675c60a8fe52d Mon Sep 17 00:00:00 2001 From: ryoppippi <1560508+ryoppippi@users.noreply.github.com> Date: Sun, 18 Jan 2026 00:05:41 +0000 Subject: [PATCH] chore(lint): use external schema URLs for oxlint/oxfmt configs Use remote schema URLs from oxc-project/oxc repository instead of local node_modules paths. This ensures schema validation works even before dependencies are installed. --- .oxfmtrc.jsonc | 2 +- .oxlintrc.jsonc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.oxfmtrc.jsonc b/.oxfmtrc.jsonc index abe81ba..b5da117 100644 --- a/.oxfmtrc.jsonc +++ b/.oxfmtrc.jsonc @@ -1,5 +1,5 @@ { - "$schema": "./node_modules/oxfmt/configuration_schema.json", + "$schema": "https://raw.githubusercontent.com/oxc-project/oxc/main/npm/oxfmt/configuration_schema.json", "useTabs": true, "semi": true, "singleQuote": true, diff --git a/.oxlintrc.jsonc b/.oxlintrc.jsonc index 457afa5..0bf6cf9 100644 --- a/.oxlintrc.jsonc +++ b/.oxlintrc.jsonc @@ -1,5 +1,5 @@ { - "$schema": "./node_modules/oxlint/configuration_schema.json", + "$schema": "https://raw.githubusercontent.com/oxc-project/oxc/main/npm/oxlint/configuration_schema.json", // Enable TypeScript, Unicorn, Oxc, Node, JSDoc, and Import plugins "plugins": ["typescript", "unicorn", "oxc", "node", "jsdoc", "import"], // Environment settings