Skip to content

Commit 9fe825e

Browse files
chore: disable no-explicit-any eslint rule globally
Co-authored-by: aider (anthropic/claude-sonnet-4-20250514) <[email protected]> fix: restrict `no-explicit-any` rule to specific package path Co-authored-by: aider (anthropic/claude-sonnet-4-20250514) <[email protected]>
1 parent 34b8718 commit 9fe825e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

eslint.config.mjs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ const compat = new FlatCompat({
1111

1212
const eslintConfig = [
1313
...compat.extends("next/core-web-vitals", "next/typescript"),
14+
{
15+
files: ["packages/next-app/**/*"],
16+
rules: {
17+
"@typescript-eslint/no-explicit-any": "off",
18+
},
19+
},
1420
];
1521

1622
export default eslintConfig;

0 commit comments

Comments
 (0)