-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcspell.config.json
44 lines (44 loc) · 906 Bytes
/
cspell.config.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",
"import": [
"./config/cspell/base.json"
],
"cache": {
"cacheLocation": "node_modules/.cache/cspell/cache.json",
"useCache": true
},
"dictionaries": [
"config-contributors",
"config-dependencies"
],
"dictionaryDefinitions": [
{
"name": "config-dependencies",
"description": "Words, terms, names & phrases used by dependencies of the @sepruko/config project.",
"useCompounds": true,
"words": [
"ansi",
"Anson",
"jsr"
]
},
{
"name": "config-contributors",
"description": "The names of contributors to the @sepruko/config project.",
"useCompounds": true,
"words": [
"nat",
"sepruko"
]
}
],
"reporters": [
"default",
[
"@cspell/cspell-json-reporter",
{
"outFile": "node_modules/.cache/cspell/report.json"
}
]
]
}