-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcspell.json
79 lines (79 loc) · 1.91 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"version": "0.2",
"dictionaries": ["ni-dictionary"],
"dictionaryDefinitions": [
{
"name": "ni-dictionary",
"path": "ni-dictionary.txt",
"addWords": true
}
],
"flagWords": [
"AzDo->AzDO",
"Azdo->AzDO",
"AZDO->AzDO",
"azdo->AzDO",
"back-end->backend",
"back-ends->backends",
"front-end->frontend",
"front-ends->frontends",
"github->GitHub",
"Github->GitHub",
"micro-frontend->micro frontend",
"micro-front-end->micro frontend",
"microfrontend->micro frontend",
"micro-frontends->micro frontends",
"micro-front-ends->micro frontends",
"microfrontends->micro frontends",
"micro-service->microservice",
"micro-services->microservices",
"misspelt->misspelled",
"pre-configured->preconfigured",
"pre-existing->preexisting",
"pre-made->premade",
"re-deploy->redeploy",
"re-deployed->redeployed",
"re-deploying->redeploying",
"re-deploys->redeploys",
"summery->summary",
"systemlink->SystemLink",
"Systemlink->SystemLink"
],
"minWordLength": 3,
"language": "en-us",
"languageSettings": [
{
"languageId": "markdown",
"caseSensitive": true
}
],
"patterns": [
{
"name": "code-single-line",
"pattern": "`.+`"
},
{
"name": "code-multi-line",
"pattern": "/^\\s*```[\\s\\S]*?^\\s*```/gm",
"comment": "From https://github.com/streetsidesoftware/vscode-spell-checker/issues/202#issuecomment-377477473"
},
{
"name": "code",
"pattern": ["code-single-line", "code-multi-line"]
},
{
"name": "links",
"pattern": "]\\(.*\\)"
},
{
"name": "three-letter acronyms",
"pattern": "/\\b_?[A-Z]{3}([0-9_]+)?\\b/"
},
{
"name": "mailto",
"pattern": "\\[[^\\]]+]\\(mailto"
}
],
"ignoreRegExpList": ["code", "links", "three-letter acronyms", "mailto"],
"ignorePaths": []
}