Files
moyosapp_beta.0.0.3/.eslintrc.json
2026-01-15 16:19:14 +02:00

35 lines
660 B
JSON

{
"extends": [
"next/core-web-vitals",
"next/typescript"
],
"rules": {
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"@typescript-eslint/no-require-imports": "off",
"react-hooks/exhaustive-deps": "warn",
"react/no-unescaped-entities": "off",
"no-console": [
"warn",
{
"allow": ["warn", "error"]
}
]
},
"ignorePatterns": [
"node_modules/",
".next/",
"out/",
"build/",
"coverage/",
"*.config.js",
"*.config.ts"
]
}