We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b32f081 commit 1bdaa7aCopy full SHA for 1bdaa7a
‎frontend/.eslintrc.json‎
@@ -0,0 +1,6 @@
1
+{
2
+ "extends": [
3
+ "next/core-web-vitals",
4
+ "next/typescript"
5
+ ]
6
+}
‎frontend/package.json‎
@@ -6,7 +6,9 @@
"dev": "node server.js",
7
"build": "next build",
8
"start": "NODE_ENV=production node server.js",
9
- "lint": "next lint"
+ "lint": "next lint",
10
+ "type-check": "tsc --noEmit",
11
+ "check-all": "npm run type-check && npm run lint && npm run build"
12
},
13
"dependencies": {
14
"@ant-design/icons": "^6.0.0",
@@ -90,6 +92,8 @@
90
92
"@types/node": "22.15.16",
91
93
"@types/react": "18.3.20",
94
"@types/react-dom": "18.3.6",
95
+ "eslint": "^9.34.0",
96
+ "eslint-config-next": "15.5.0",
97
"postcss": "^8",
98
"tailwindcss": "^3.4.17",
99
"typescript": "5.8.3"
0 commit comments