mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 20:32:10 +00:00
14 lines
259 B
Bash
Executable file
14 lines
259 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
TEST_DIR="./tmp/vscode/src"
|
|
|
|
OXC="../target/release/oxc_cli lint ${TEST_DIR}"
|
|
|
|
ESLINT="./node_modules/.bin/eslint -c .eslintrc.json ${TEST_DIR}"
|
|
|
|
echo ${OXC}
|
|
echo ${ESLINT}
|
|
|
|
hyperfine -w 5 -i \
|
|
-n oxc "${OXC}" \
|
|
-n eslint "${ESLINT}"
|