From bb314ef2daa06013a5446261186089eec0d21858 Mon Sep 17 00:00:00 2001 From: takeokunn Date: Sun, 1 Feb 2026 01:33:30 +0900 Subject: [PATCH] Add oxlint for javascript-oxlint checker Add oxlint to the npm tools installation for CI testing of the new javascript-oxlint checker in flycheck. Related to flycheck/flycheck#2047 --- all-tools/Dockerfile | 1 + all-tools/check-tools | 1 + 2 files changed, 2 insertions(+) diff --git a/all-tools/Dockerfile b/all-tools/Dockerfile index d2d1991..5b7c30c 100644 --- a/all-tools/Dockerfile +++ b/all-tools/Dockerfile @@ -143,6 +143,7 @@ RUN curl -sSLo node.txz "https://nodejs.org/dist/v${NODE_VERSION}/node-v${NODE_V jsonlint \ less \ markdownlint-cli \ + oxlint \ pug-cli \ pyright \ sass-lint \ diff --git a/all-tools/check-tools b/all-tools/check-tools index a5e6ea3..914de6a 100755 --- a/all-tools/check-tools +++ b/all-tools/check-tools @@ -42,6 +42,7 @@ echo "--- Installed tools ---" \ && echo "javascript-eslint: $(eslint --version)" \ && echo "javascript-jshint: $(jshint --version 2>&1)" \ && echo "javascript-standard: standard $(standard --version) semistandard $(semistandard --version)" \ + && echo "javascript-oxlint: $(oxlint --version)" \ && echo "jscs: $(jscs --version)" \ && echo "json-jsonlint: $(jsonlint --version)" \ && echo "json-python-json: $(python --version 2>&1)" \