mirror of
https://github.com/merlinhu1/truthmark.git
synced 2026-08-25 07:53:25 +02:00
23 lines
367 B
JavaScript
23 lines
367 B
JavaScript
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",
|
|
},
|
|
},
|
|
];
|