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
27 changes: 0 additions & 27 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,33 +115,6 @@ jobs:
NODE_OPTIONS: '--max_old_space_size=4096'
run: pnpm run lint

spellcheck:
name: Spell Check
timeout-minutes: 15
runs-on: ubuntu-latest
permissions:
contents: read
if: github.actor != 'github-actions[bot]'
steps:
- name: Check out code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
fetch-depth: 0
persist-credentials: false

- name: Setup Tools
uses: ./.github/setup
with:
node-version: '22'

- name: Spell Check
uses: streetsidesoftware/cspell-action@9c7145a5e625e30cb68f6932b379e17eb024d974 # v8
with:
files: |
**/*.{ts,md}
suggestions: 'true'
config: 'cspell.json'

prerelease:
name: Prerelease
timeout-minutes: 15
Expand Down
1 change: 1 addition & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ that loads `SKILL.md` folders also picks them up on demand.
- [markdown](.agents/skills/conventions/rules/markdown.md) - Markdown structure. The `documentation` and `humanizer` skills cover voice and SEO.
- [security](.agents/skills/conventions/rules/security.md) - Secrets, input validation at trust boundaries, safe shell use.
- [testing](.agents/skills/conventions/rules/testing.md) - Vitest patterns and what to test.
- [usa-english](.agents/skills/conventions/rules/usa-english.md) - Write code, comments, and docs in USA English spellings.

<skills>

Expand Down
4 changes: 0 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ Publishable code lives in `packages/`, internal helpers that never ship live in
| [Vitest](https://vitest.dev/) | Testing |
| [oxlint](https://oxc.rs/docs/guide/usage/linter.html) | Linter |
| [oxfmt](https://github.com/oxc-project/oxfmt) | Formatter |
| [CSpell](https://cspell.org/) | Spell checker |
| [Changesets](https://github.com/changesets/changesets) | Versioning and changelogs |
| [GitHub Actions](https://github.com/features/actions) | CI/CD |

Expand All @@ -69,7 +68,6 @@ pnpm typecheck # Type-check all packages
pnpm lint # Lint with oxlint
pnpm lint:fix # Lint and auto-fix
pnpm format # Format with oxfmt
pnpm lint:spell # Spell-check .ts and .md files
pnpm changeset # Create a changeset
pnpm upgrade # Bump dependencies with taze
```
Expand Down Expand Up @@ -111,5 +109,3 @@ pnpm changeset
```

Pick the packages you changed, choose the bump (patch for fixes, minor for features, major for breaking changes), and write a short summary aimed at users. Commit the generated file under `.changeset/`. Docs-only or internal changes that touch no published package do not need one.

Spell-check false positives: fix typos in code, or add technical terms and proper nouns to the `words` array in `cspell.json`.
54 changes: 0 additions & 54 deletions cspell.json

This file was deleted.

2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"graph": "npx nx graph ",
"lint": "oxlint -c oxlint.config.ts ./packages",
"lint:fix": "oxlint -c oxlint.config.ts --fix ./packages",
"lint:spell": "cspell \"**/*.{ts,md}\" --config ./cspell.json --no-progress",
"release": "changeset publish",
"start": "turbo run start --filter=./packages/* --filter=./internals/*",
"test": "vitest run --config ./configs/vitest.config.ts",
Expand All @@ -41,7 +40,6 @@
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"bun-types": "^1.3.14",
"cspell": "^10.0.0",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"size-limit": "catalog:",
Expand Down
Loading
Loading