Files
CapaKraken/tooling/eslint/package.json
T
Hartmut 09dcedb646 feat(eslint): add jsx-a11y accessibility rules as warnings
Install eslint-plugin-jsx-a11y and add 24 recommended rules to the
nextjs ESLint config, all set to warn. Baseline: 292 warnings
(207 label-has-associated-control, 52 no-static-element-interactions,
22 click-events-have-key-events, 10 no-autofocus, 1 html-has-lang).

Will be upgraded to errors after Phase 5c fixes core components.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-10 22:59:15 +02:00

26 lines
597 B
JSON

{
"name": "@capakraken/eslint-config",
"version": "0.1.0",
"private": true,
"type": "module",
"exports": {
"./base": "./src/base.js",
"./nextjs": "./src/nextjs.js"
},
"license": "MIT",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^7.0.1"
},
"peerDependencies": {
"eslint": "^9.0.0",
"typescript": "^5.0.0"
},
"devDependencies": {
"eslint-plugin-jsx-a11y": "^6.10.2"
}
}