mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-16 06:39:01 +02:00
- Add @multica/eslint-config package (base, react, next configs) - Replace `next lint` (removed in Next.js 16) with `eslint .` - Add lint scripts to all packages and desktop app - Add noUnusedLocals, noUnusedParameters, noImplicitReturns to base tsconfig - Fix all resulting TS/ESLint errors (unused imports, missing returns, stale eslint-disable comments from legacy eslint-config-next) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
467 B
JSON
22 lines
467 B
JSON
{
|
|
"name": "@multica/eslint-config",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
"./base": "./base.js",
|
|
"./react": "./react.js",
|
|
"./next": "./next.js"
|
|
},
|
|
"dependencies": {
|
|
"@eslint/js": "^9.28.0",
|
|
"typescript-eslint": "^8.35.0",
|
|
"eslint-plugin-react": "^7.37.0",
|
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
"@next/eslint-plugin-next": "^16.2.0"
|
|
},
|
|
"peerDependencies": {
|
|
"eslint": "^9.0.0"
|
|
}
|
|
}
|