forked from WebFreak001/code-debug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cspell.json
33 lines (33 loc) · 874 Bytes
/
cspell.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
{
"version": "0.2",
"language": "en",
"enabledLanguageIds": [
"markdown"
],
"languageSettings": [
{
"languageId": "markdown",
"ignoreRegExpList": [
// don't spellcheck inside code fences
"/```(?:.|\\n)+?^\\s*```/m",
// don't spellcheck inside code quoting
"/(?<!`)`[^`]+?`/",
// don't spellcheck GitHub user names
"/@\\w+/"
],
"dictionaries": [
"cspell-dict.txt"
]
}
],
"minWordLength": 1,
"dictionaryDefinitions": [
{
"name": "cspell-dict.txt",
"path": "./cspell-dict.txt",
"description": "Custom Workspace Dictionary",
"addWords": true,
"scope": "workspace"
}
]
}