forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcspell-ext.json
26 lines (26 loc) · 904 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
{
"id": "fi-fi",
"version": "0.2",
"name": "Finnish",
"description": "Finnish dictionary for cspell.",
"readonly": true,
"dictionaryDefinitions": [
{
"name": "fi-fi",
"path": "./dict/fi-fi.trie.gz",
"description": "Finnish dictionary for cspell."
}
],
"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": "fi,fi-fi",
// List of dictionaries to enable by name in `dictionaryDefinitions`
"dictionaries": ["fi-fi"]
}
]
}