From 5b32ee462621376e794777f4d4b8b58f4ef5f6c9 Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Sat, 7 Feb 2026 08:23:52 +1100 Subject: [PATCH] registry: switch oxlint to npm backend by default --- registry/oxlint.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/registry/oxlint.toml b/registry/oxlint.toml index a5441245a2..42913fee9a 100644 --- a/registry/oxlint.toml +++ b/registry/oxlint.toml @@ -1,5 +1,5 @@ -backends = ["aqua:oxc-project/oxc/oxlint", "npm:oxlint"] +# aqua cannot support oxlint 1.17.0 or later. +# See https://github.com/oxc-project/oxc/discussions/14452#discussioncomment-14631344 +backends = ["npm:oxlint", "aqua:oxc-project/oxc/oxlint"] description = "This is the linter for oxc." -# TODO: Re-enable test once the aqua registry is fixed -# The latest release has incorrect binary naming (oxlint.linux-x64-gnu.node instead of oxlint) -# test = ["oxlint --version", "Version: {{version}}"] +test = ["oxlint --version", "Version: {{version}}"]