From a8fea726ae9a7b3367c2691a2018676edd9af293 Mon Sep 17 00:00:00 2001 From: Valentino Hudhra Date: Fri, 23 Jan 2026 15:27:10 +0100 Subject: [PATCH] Remove eslint mention for agents --- CLAUDE.md | 1 + README.md | 3 +-- apps/api/README.md | 2 +- apps/app/README.md | 4 ++-- packages/core/README.md | 4 ++-- packages/hooks/README.md | 4 ++-- packages/ui/README.md | 4 ++-- services/api/README.md | 4 ++-- services/db/README.md | 2 +- services/emails/README.md | 4 ++-- services/supabase/README.md | 4 ++-- 11 files changed, 18 insertions(+), 18 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 99509f6e5..a6e95b895 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -113,6 +113,7 @@ Use `pnpm w:` shortcuts: - Follow existing code conventions and patterns in the file being edited - Test changes thoroughly before completion - Using `any` to fix type errors shuold be avoided +- Code quality is enforced via **Prettier** (formatting) and **TypeScript** (type checking) only ### Coding Conventions diff --git a/README.md b/README.md index 31669da89..bf7715266 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,6 @@ Backend services and utilities, often consumed by the applications. Shareable configurations for tooling. -- **[`configs/eslint-config`](./configs/eslint-config/README.md)**: Shared ESLint configurations (`base.js`, `next.js`, etc.) to enforce consistent code style and quality. The `next.js` config is widely used across workspaces. - **[`configs/typescript-config`](./configs/typescript-config/README.md)**: Shared TypeScript `tsconfig.json` base files (`base.json`, `nextjs.json`, `react-library.json`, etc.) to ensure consistent compiler options. ## Development Workflow @@ -64,7 +63,7 @@ _(Commands below assume usage of the `w:` shorthand)_ - After modifying the database schema (`services/db/schema/tables/*.sql`), run `pnpm w:db generate` to create SQL migrations and extract indexes. - Apply migrations by running `pnpm w:db migrate`. - Generate Supabase types by running `pnpm w:supabase typegen`. -- **Linting**: Run `pnpm lint` in the root to lint all workspaces, or `pnpm w: lint` (e.g., `pnpm w:app lint`) to lint a specific workspace. +- **Type Checking**: Run `pnpm typecheck` to type-check all workspaces, or `pnpm w: typecheck` (e.g., `pnpm w:app typecheck`) for a specific workspace. - **Running Specific Workspaces**: Use `pnpm w: