Files
jam-session-web/.eslintrc.json
T
2025-01-12 22:25:24 +01:00

10 lines
456 B
JSON

{
"extends": ["next/core-web-vitals", "eslint:recommended"],
"rules": {
"react/react-in-jsx-scope": "off", // Next.js doesn't require React in scope.
"no-console": "warn", // Allow console.logs but with a warning.
"semi": ["warn", "always"], // Enforce semicolons with a warning.
"quotes": ["warn", "single"], // Prefer single quotes with a warning.
"@next/next/no-html-link-for-pages": "off" // Disable Next.js-specific rule.
}
}