Files
lumina-nextjs-template/.eslintrc.json
2025-12-23 04:19:57 +01:00

14 lines
290 B
JSON

{
"extends": ["next/core-web-vitals", "next/typescript"],
"rules": {
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"@typescript-eslint/no-explicit-any": "warn"
}
}