removed idea folder

This commit is contained in:
2025-01-12 22:25:24 +01:00
parent e8442ffde4
commit 79bdb7163f
27 changed files with 2844 additions and 273 deletions
+10
View File
@@ -0,0 +1,10 @@
{
"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.
}
}