fix: robust eslint9 flat config to fix pipeline patch error
Some checks failed
Build & Deploy / 🔍 Prepare Environment (push) Successful in 10s
Build & Deploy / 🧪 QA (push) Failing after 1m3s
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / ⚡ PageSpeed (push) Has been cancelled
Build & Deploy / 🔔 Notifications (push) Has been cancelled
Build & Deploy / 🏗️ Build (push) Has been cancelled

This commit is contained in:
2026-02-07 16:37:58 +01:00
parent 958989165f
commit b4378d07f3
5 changed files with 272 additions and 195 deletions

View File

@@ -7,7 +7,7 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint": "eslint app src scripts video",
"test": "npm run test:links",
"test:links": "tsx ./scripts/test-links.ts",
"test:file-examples": "tsx ./scripts/test-file-examples-comprehensive.ts",
@@ -67,6 +67,8 @@
"zod": "3.22.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.1",
"@lhci/cli": "^0.15.1",
"@mintel/cli": "^1.1.13",
"@mintel/eslint-config": "^1.1.13",
@@ -74,15 +76,19 @@
"@mintel/next-config": "1.1.13",
"@mintel/next-utils": "^1.1.13",
"@mintel/tsconfig": "^1.1.13",
"@next/eslint-plugin-next": "^16.1.6",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^25.0.6",
"@types/prismjs": "^1.26.5",
"@types/qrcode": "^1.5.6",
"autoprefixer": "^10.4.20",
"cheerio": "^1.1.2",
"eslint": "8.57.1",
"eslint": "9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"postcss": "^8.4.49",
"tsx": "^4.21.0",
"typescript": "5.9.3"
"typescript": "5.9.3",
"typescript-eslint": "^8.54.0"
}
}
}