- Add type-coverage, knip, and dependency-cruiser for code quality - Set up Node 22 (LTS) with .nvmrc file - Configure knip for dead code detection across monorepo - Configure dependency-cruiser with sensible architecture rules - Add ts-reset for better TypeScript built-in types - Fix Tabs component type exports for Storybook - Recreate eslint react.js config that was missing - Add quality gates documentation All quality checks pass with 0 errors (only informational warnings). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
28 lines
705 B
JavaScript
28 lines
705 B
JavaScript
import jsxA11yPlugin from "eslint-plugin-jsx-a11y";
|
|
import reactPlugin from "eslint-plugin-react";
|
|
import hooksPlugin from "eslint-plugin-react-hooks";
|
|
import baseConfig from "./base.js";
|
|
|
|
export default [
|
|
...baseConfig,
|
|
{
|
|
files: ["**/*.{js,jsx,ts,tsx}"],
|
|
plugins: {
|
|
react: reactPlugin,
|
|
"react-hooks": hooksPlugin,
|
|
"jsx-a11y": jsxA11yPlugin,
|
|
},
|
|
rules: {
|
|
...reactPlugin.configs.recommended.rules,
|
|
...hooksPlugin.configs.recommended.rules,
|
|
...jsxA11yPlugin.configs.recommended.rules,
|
|
"react/react-in-jsx-scope": "off", // Not needed in Next.js/React 17+
|
|
"react/prop-types": "off", // Using TypeScript
|
|
},
|
|
settings: {
|
|
react: {
|
|
version: "detect",
|
|
},
|
|
},
|
|
},
|
|
];
|