-
-
Notifications
You must be signed in to change notification settings - Fork 205
/
cspell-ext.json
28 lines (28 loc) · 1004 Bytes
/
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
{
"id": "id-id",
"version": "0.2",
"name": "Indonesia",
"description": "Indonesia dictionary for cspell.",
"readonly": true,
// List of dictionary files to add to the global list of dictionaries
"dictionaryDefinitions": [
{
"name": "id-id",
"path": "./dict/id-id.trie",
"description": "Indonesia dictionary for cspell."
}
],
// Language Rules to apply to matching files.
// Files are matched on `languageId` and `locale`
"languageSettings": [
{
// VSCode languageId. i.e. typescript, java, go, cpp, javascript, markdown, latex
// * will match against any file type.
"languageId": "*",
// Language locale. i.e. en-US, de-AT, or ru. * will match all locales.
// Multiple locales can be specified like: "en, en-US" to match both English and English US.
"locale": "id,id-ID",
"dictionaries": ["id-id"]
}
]
}