forked from chef/chef-web-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cspell.json
46 lines (46 loc) · 1.07 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
{
// Version of the setting file. Always 0.1
"version": "0.2",
// language - current active spelling language
"language": "en_US",
"dictionaries": [
"chef",
"docs"
],
"dictionaryDefinitions": [
{
"name": "chef",
"path": "https://raw.githubusercontent.com/chef/chef_dictionary/main/chef.txt",
"description": "Custom Chef Dictionary"
},
{
"name": "docs",
"path": "https://raw.githubusercontent.com/chef/chef_dictionary/main/docs.txt",
"description": "Custom Docs Dictionary"
}
],
// words - list of words to be always considered correct
// "words": [
// ],
// flagWords - list of words to be always considered incorrect
// This is useful for offensive words and common spelling errors.
// For example "hte" should be "the"
"flagWords": [
"hte"
],
"ignorePaths": [
".expeditor/**/*",
"**/*.yml",
"**/*.toml",
"archetypes/*.md",
"_vendor/**/*"
],
"ignoreRegExpList": [
"/'s\\b/",
"/'d\\b/",
"/^\\s*```[\\s\\S]*?^\\s*```/gm",
"{{(.+)(?=}})"
],
"words": [
]
}