forked from OfferZen-Community/developer-mentoring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcspell.json
35 lines (34 loc) · 1.25 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
{
// Enable your dictionary by adding it to the list of `dictionaries`
"dictionaries": ["custom-words", "custom-names", "technical-words"],
// Tell CSpell about your dictionary
"dictionaryDefinitions": [
{
// The name of the dictionary is used to look it up.
"name": "custom-words",
// Path to the custom word file. Relative to this `cspell.json` file.
"path": "./.cspell/custom-words.txt",
// Some editor extensions will use `addWords` for adding words to your
// personal dictionary.
"addWords": true
},
{
// The name of the dictionary is used to look it up.
"name": "custom-names",
// Path to the custom word file. Relative to this `cspell.json` file.
"path": "./.cspell/custom-names.txt",
// Some editor extensions will use `addWords` for adding words to your
// personal dictionary.
"addWords": true
},
{
// The name of the dictionary is used to look it up.
"name": "technical-words",
// Path to the custom word file. Relative to this `cspell.json` file.
"path": "./.cspell/technical-words.txt",
// Some editor extensions will use `addWords` for adding words to your
// personal dictionary.
"addWords": true
}
]
}