Skip to content

Commit 93fccdb

Browse files
committed
chore: fix the cspell ignore paths
The readmes/ directory went away with the docs rewrite in #1388, so **/readmes/** no longer matches anything. Replaced it with docs/versioned_docs/**, which holds frozen snapshots of the released 0.1-0.3 docs: they carry typos that cannot be corrected without rewriting published pages. Also added the domain terms that were left unlisted and switched two British spellings to US so the dictionary can stay strict. cspell now passes over all 1812 tracked md and css files.
1 parent e12ab1e commit 93fccdb

4 files changed

Lines changed: 10 additions & 3 deletions

File tree

.agents/skills/add-api-tests/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ When adding or changing code under `src/`, verify that:
146146
every code `src/` raises out of the source and checks it is listed.
147147
- [ ] A new export is reflected in the `api/apiSurface` snapshot, and the change
148148
is intentional (a removal or rename is a breaking change).
149-
- [ ] Any new fake behaviour in `__tests__/support/` is faithful where fidelity
149+
- [ ] Any new fake behavior in `__tests__/support/` is faithful where fidelity
150150
changes an assertion, and its simplifications are commented.
151151
- [ ] A new `create<Task>` allocates through `createResourceScope()` and is
152152
listed in `__tests__/tasks/constructionFailure.test.ts`.

.cspell-wordlist.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -377,3 +377,10 @@ jsonrepair
377377
SRCROOT
378378
fbjni
379379
reactnative
380+
colormaps
381+
chunker
382+
hermesversion
383+
libtokenizers
384+
pretokenizer
385+
repoint
386+
repoints

.cspell.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"version": "0.2",
33
"language": "en",
4-
"ignorePaths": ["**/node_modules", "**/Pods", "**/readmes/**"],
4+
"ignorePaths": ["**/node_modules", "**/Pods", "docs/versioned_docs/**"],
55
"dictionaryDefinitions": [
66
{
77
"name": "project-words",

packages/react-native-executorch/cpp/tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ automatically; they land in `fixtures/` and are gitignored rather than committed
125125
The useful part is that this needs **no XNNPACK delegate**, even though the
126126
fixture is XNNPACK-delegated. `ModelHostObject`'s constructor only calls
127127
`Module::load()` and `Module::method_meta()`, and in ExecuTorch both parse the
128-
program without initialising delegates — only `load_method()` resolves backends
128+
program without initializing delegates — only `load_method()` resolves backends
129129
(it fails with error 32, `NotFound`, in this build). So the entire load path is
130130
testable on the host:
131131

0 commit comments

Comments
 (0)