forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcspell-ext.json
33 lines (33 loc) · 821 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
29
30
31
32
33
{
"id": "docker",
"version": "0.2",
"name": "Docker Dictionary",
"description": "Docker dictionary for cspell.",
"readonly": true,
"dictionaryDefinitions": [
{
"name": "docker",
"path": "./docker-words.txt.gz",
"description": "Docker dictionary for cspell."
}
],
"dictionaries": [],
"languageSettings": [
{
"languageId": "dockerfile",
"locale": "*",
"includeRegExpList": [],
"ignoreRegExpList": [],
"patterns": [],
"dictionaries": ["docker"],
"dictionaryDefinitions": []
}
],
"globRoot": "${cwd}",
"overrides": [
{
"filename": "**/Dockerfile",
"languageId": "dockerfile"
}
]
}