chore: replace Biome with oxlint and oxfmt

This commit is contained in:
2026-09-18 14:21:15 -04:00
parent 5ff837b2bb
commit 87e20f4a47
28 changed files with 1154 additions and 629 deletions
+2 -8
View File
@@ -11,13 +11,7 @@ import { lookup } from "../dist/index.mjs";
async function main() {
if (process.argv.length > 2) {
// URL(s) specified in the command arguments
console.log(
JSON.stringify(
await lookup(process.argv[process.argv.length - 1]),
null,
2,
),
);
console.log(JSON.stringify(await lookup(process.argv[process.argv.length - 1]), null, 2));
} else {
// No domain passed as argument, read from each line of stdin
const rlInterface = createInterface({
@@ -29,4 +23,4 @@ async function main() {
}
}
main();
void main();