Files
br-acc/frontend/eslint.config.js
bruno cesar 127a3e6754 Phase 0: Foundation — project skeleton with all three packages
- git init, AGPL-3.0 license, .gitignore, .env.example, Makefile
- CLAUDE.md with neutrality rules, build commands, code style
- Custom agents: security-reviewer, code-reviewer, test-writer
- API: FastAPI skeleton with health check, meta endpoints, Neo4j driver
- ETL: Pipeline base class, CLI runner skeleton, splink + basedosdados deps
- Frontend: Vite + React 19 + React Router 7 + i18n (PT-BR/EN) + Zustand
- Infra: docker-compose.yml (Neo4j + API + Frontend), schema init.cypher
- All feedback loops pass: ruff, mypy, pytest, eslint, tsc, vitest

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-22 03:16:21 -03:00

25 lines
608 B
JavaScript

import pluginReactHooks from "eslint-plugin-react-hooks";
import globals from "globals";
import tseslint from "typescript-eslint";
export default tseslint.config(
{ ignores: ["dist"] },
{
files: ["**/*.{ts,tsx}"],
extends: [...tseslint.configs.recommended],
languageOptions: {
globals: globals.browser,
},
plugins: {
"react-hooks": pluginReactHooks,
},
rules: {
...pluginReactHooks.configs.recommended.rules,
"@typescript-eslint/no-unused-vars": [
"error",
{ argsIgnorePattern: "^_", varsIgnorePattern: "^_" },
],
},
},
);