forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cspell-ext.json
53 lines (53 loc) · 1.99 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
// cSpell Settings
{
"id": "nl-nl",
"name": "Dutch (Netherlands) Dictionary",
"description": "Dutch (Netherlands) Dictionary",
// List of dictionary files to add to the global list of dictionaries
"dictionaryDefinitions": [
{
"name": "nl-nl",
"file": "./Dutch.trie.gz",
"repMap": [
["áá", "aa"],
["éé", "ee"],
["íé", "ie"],
["óó", "oo"],
["úú", "uu"],
["óé", "oe"],
["’", "'"]
],
// We should use compound words by default with Dutch
"useCompounds": true,
"description": "Dutch (Netherlands) Dictionary"
}
],
// Dictionaries to always be used.
// Generally left empty
"dictionaries": [],
// Language Rules to apply to matching files.
// Files are matched on `languageId` and `local`
"languageSettings": [
{
// VSCode languageId. i.e. typescript, java, go, cpp, javascript, markdown, latex
// * will match against any file type.
"languageId": "*",
// Language local. i.e. en-US, de-AT, or ru. * will match all locals.
// Multiple locals can be specified like: "en, en-US" to match both English and English US.
"local": "nl,nl-NL",
// By default the
"ignoreRegExpList": [
"/'tjes?\\b/"
],
"includeRegExpList": [],
// regex patterns than can be used with ignoreRegExpList or includeRegExpList
// Example: "pattern": [{ "name": "mdash", "pattern": "—" }]
// This could be included in "ignoreRegExpList": ["mdash"]
"patterns": [],
// List of dictionaries to enable by name in `dictionaryDefinitions`
"dictionaries": ["nl-nl"],
// Dictionary definitions can also be supplied here
"dictionaryDefinitions": []
}
]
}