Files

23 lines
379 B
JavaScript
Raw Permalink Normal View History

import js from "@eslint/js";
import tseslint from "typescript-eslint";
export default [
{
ignores: [
".codex/**",
".lean-ctx/**",
".opencode/**",
"dist/**",
"node_modules/**",
],
},
js.configs.recommended,
...tseslint.configs.recommended,
{
2026-06-30 20:57:55 +10:00
files: ["**/*.ts", "**/*.mjs"],
rules: {
"no-undef": "off",
},
},
];