Files
truthmark/eslint.config.js
T

23 lines
367 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,
{
files: ["**/*.ts"],
rules: {
"no-undef": "off",
},
},
];