forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cspell-ext.json
78 lines (78 loc) · 2.7 KB
/
cspell-ext.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
72
73
74
75
76
77
78
{
"id": "en-us",
"name": "American English Dictionary",
"description": "American English Dictionary",
"dictionaryDefinitions": [
{
"name": "en_us",
"path": "./en_US.trie.gz",
"repMap": [["'|`|’", "'"]],
"description": "American English Dictionary",
"dictionaryInformation": {
"locale": "en-US",
"alphabet": "a-zA-Z",
"suggestionEditCosts": [
{ "description": "Words like 'break' and 'brake'", "map": "(ate)(eat)|(ake)(eak)", "replace": 75 },
{
"description": "Sounds alike",
"map": "f(ph)(gh)|(sion)(tion)(cion)|(ail)(ale)|(r)(ur)(er)(ure)(or)",
"replace": 75
},
{
"description": "Double letter score",
"map": "l(ll)|s(ss)|t(tt)|e(ee)|b(bb)|d(dd)",
"replace": 75
},
{
"map": "aeiou",
"replace": 98,
"swap": 75,
"insDel": 90
},
{
"description": "Common vowel sounds.",
"map": "o(oh)(oo)|(oo)(ou)|(oa)(ou)|(ee)(ea)",
"replace": 75
},
{
"map": "o(oo)|a(aa)|e(ee)|u(uu)|(eu)(uu)|(ou)(ui)(ow)|(ie)(ei)|i(ie)|e(en)|e(ie)",
"replace": 50
},
{
"description": "Do not rank `'s` high on the list.",
"map": "($)('$)('s$)|(s$)(s'$)(s's$)",
"replace": 10,
"penalty": 180
},
{
"description": "Plurals ending in 'y'",
"map": "(ys)(ies)",
"replace": 75
},
{
"map": "(d$)(t$)(dt$)",
"replace": 75
}
]
}
}
],
"dictionaries": [],
"languageSettings": [
{
"languageId": "*",
"locale": "en,en-US",
"includeRegExpList": [],
"ignoreRegExpList": [],
"patterns": [
{
"name": "possessive_s",
"pattern": "/'s\\b/gi"
}
],
"dictionaries": ["en_us"],
"dictionaryDefinitions": [],
"flagWords": []
}
]
}