-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathcspell.config.jsonc
More file actions
56 lines (51 loc) · 1.2 KB
/
cspell.config.jsonc
File metadata and controls
56 lines (51 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"useGitignore": true,
"files": ["**/*.{ts,tsx,js,jsx,cjs,mjs,md,mdx,json,jsonc,yaml,yml}"],
"ignorePaths": ["cspell.config.jsonc"],
"flagWords": [
// prefer en-US spellings
// https://www.grammarly.com/blog/commonly-confused-words/canceled-vs-cancelled
"cancelled", // prefer 'canceled'
"cancelation", // prefer 'cancellation'
"cancelling", // prefer 'canceling'
"cancellable", // prefer 'cancelable'
"canceller", // prefer 'canceler'
"uncancelled", // prefer 'uncanceled'
],
"ignoreWords": [
// libraries & packages
"arktype",
"bullmq",
"bunx",
"Mintlify",
"nypm",
"openworkflow",
"pghero",
"posthog",
"sonarjs",
"trivago",
// postgres
"hashtextextended",
"mydb",
"sslmode",
"timestamptz",
// project vocabulary
"checkin",
"checkpointing",
"convo",
"heartbeating",
"idempotently",
"llms",
"unaliased",
"wakeups",
// usernames & contributor names
"mariusflorescu",
"Nagpal",
"nathancahill",
"octoper",
"Shobhit",
"szokeptr",
"thomasjiangcy",
],
}