-
Notifications
You must be signed in to change notification settings - Fork 171
/
Copy pathcspell.json
44 lines (44 loc) · 978 Bytes
/
cspell.json
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
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"version": "0.2",
"dictionaryDefinitions": [
{
"name": "project-words",
"path": "./cspell-words.txt",
"addWords": true
}
],
"caseSensitive": true,
"allowCompoundWords": true,
"dictionaries": [
"project-words"
],
"ignorePaths": [
"./seed/*/*/*",
".git",
".vscode",
"**/__snapshots__/**",
"**/__test__/**/fixtures",
"**/__test__/**/output",
"**/__test__/**/outputs",
"**/.next",
"**/.pnp.*",
"**/.turbo",
"**/.yarn",
"**/*.tsbuildinfo",
"**/build",
"**/dist",
"**/generated",
"**/lib",
"**/node_modules",
"**/out",
"**/storybook-static",
"/project-words.txt",
"fern/vale-styles",
"pnpm-lock.yaml",
"**/generate/fixtures",
"**/__test__/**/*.json",
"fern/apis/fhir/definition/__package__.yml",
"packages/cli/cli/build.*.cjs"
]
}