forked from OlegShchavelev/ALTGnomeWiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cspell.json
71 lines (71 loc) · 1.53 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"version": "0.2",
"language": "en, ru",
"patterns": [
{
"name": "code-block",
"pattern": "`[\\s\\S]*?`"
},
{
"name": "frontmatter-inter",
"pattern": "{{[\\s\\S]*?}}"
},
{
"name": "frontmatter-block",
"pattern": "/^\\s*---[\\s\\S]*?^\\s*---/gm"
},
{
"name": "html-comment-block",
"pattern": "/^\\s*<<!--[\\s\\S]*?^\\s*-->>/gs"
}
],
"ignoreRegExpList": [["code-block"], ["frontmatter-block"], ["html-comment-block"], ["frontmatter-inter"]],
"dictionaryDefinitions": [
{
"name": "apps & companies",
"path": "./.cspell/apps&companies.dict",
"addWords": true
},
{
"name": "anglicisms",
"path": "./.cspell/anglicisms.dict",
"addWords": true
},
{
"name": "slang",
"path": "./.cspell/slang.dict",
"addWords": true
},
{
"name": "forbidden",
"path": "./.cspell/forbidden.dict",
"addWords": true
},
{
"name": "terms",
"path": "./.cspell/terms.dict",
"addWords": true
},
{
"name": "people names",
"path": "./.cspell/people-names.dict",
"addWords": true
},
{
"name": "simple words",
"path": "./.cspell/words.dict",
"addWords": true
}
],
"dictionaries": [
"apps & companies",
"anglicisms",
"slang",
"forbiden",
"people names",
"terms",
"simple words"
],
"import": ["@cspell/dict-ru_ru/cspell-ext.json"],
"ignorePaths": ["docs/equipment/hardware-compatibility.md"]
}