Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ updates:
patterns:
- 'react'
- 'react-dom'
typescript-eslint:
patterns:
- '@typescript-eslint/*'
vitest:
patterns:
- 'vitest'
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ jobs:
- name: Install dependencies
run: npm i

- name: Biome
run: node --run biome:ci

- name: Typecheck
run: node --run typecheck

Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ jobs:
- name: Install dependencies
run: npm i

- name: Biome
run: node --run biome:ci

- name: Typecheck
run: node --run typecheck

Expand Down
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"recommendations": ["dbaeumer.vscode-eslint", "oxc.oxc-vscode", "biomejs.biome"]
"recommendations": ["dbaeumer.vscode-eslint", "oxc.oxc-vscode"]
}
5 changes: 2 additions & 3 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
npm install # setup (requires Node.js ≥ 22 for `node --run`)
node --run build # library → lib/
node --run typecheck # tsc --build
node --run check # biome check (warnings are errors)
node --run eslint # eslint --max-warnings 0
node --run eslint:fix # eslint --fix
node --run format # oxfmt
Expand Down Expand Up @@ -48,7 +47,7 @@ website/ # demo site (Vite + TanStack Router)
- **Dual classnames** — components apply both a semantic class (`rdg-cell`) and a generated hash. Preserve both.
- **Light/dark mode** — handled via CSS `light-dark()` + `color-scheme`, not JS.
- **Accessibility first** — ARIA attributes (e.g. `aria-colindex`, `aria-rowindex`, `aria-selected`, roles) are required. Tests query by role.
- **Formatting** — oxfmt (not Prettier). **Linting** — Biome + ESLint (both must pass with zero warnings).
- **Formatting** — oxfmt (not Prettier). **Linting** — ESLint (must pass with zero warnings).
- **Build** — Rolldown bundles library to `lib/`; `ecij` plugin prefixes classes with `rdg-{version}-` (dots→dashes) to avoid cross-version conflicts.

## Testing
Expand All @@ -60,4 +59,4 @@ website/ # demo site (Vite + TanStack Router)

## Validation

Run before submitting changes: `node --run typecheck`, `node --run check`, `node --run eslint`, `node --run format`, `node --run test`.
Run before submitting changes: `node --run typecheck`, `node --run eslint`, `node --run format`, `node --run test`.
Loading
Loading