chore: migrate project tooling to bun and add eslint linting

This commit is contained in:
Codex
2026-02-18 13:12:31 +00:00
parent 57946fa294
commit 82fbefda10
5 changed files with 240 additions and 16 deletions

24
eslint.config.js Normal file
View File

@@ -0,0 +1,24 @@
"use strict";
const js = require("@eslint/js");
const globals = require("globals");
module.exports = [
{
ignores: ["data/**", "coverage/**"],
},
js.configs.recommended,
{
files: ["src/**/*.js", "test/**/*.js"],
languageOptions: {
ecmaVersion: "latest",
sourceType: "commonjs",
globals: {
...globals.node,
},
},
rules: {
"no-console": "off",
},
},
];