24 lines
545 B
TypeScript
24 lines
545 B
TypeScript
import tseslint from "typescript-eslint";
|
|
|
|
export default tseslint.config(
|
|
{
|
|
ignores: [
|
|
"**/node_modules/**",
|
|
"**/dist/**",
|
|
"**/.cache/**",
|
|
"**/.local/**",
|
|
"**/lib/api-zod/src/generated/**",
|
|
"**/lib/api-client-react/src/generated/**",
|
|
"**/lib/integrations/**",
|
|
],
|
|
},
|
|
...tseslint.configs.recommended,
|
|
{
|
|
rules: {
|
|
"@typescript-eslint/no-explicit-any": "warn",
|
|
"@typescript-eslint/no-unused-vars": "off",
|
|
"@typescript-eslint/no-require-imports": "warn",
|
|
},
|
|
},
|
|
);
|