mirror of
https://github.com/kharonsec/br-acc
synced 2026-04-25 17:15:02 +02:00
- 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>
25 lines
608 B
JavaScript
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: "^_" },
|
|
],
|
|
},
|
|
},
|
|
);
|