forked from Absolute-Music-Solutions/bigcommerce-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.cspell.json
More file actions
25 lines (25 loc) · 695 Bytes
/
Copy path.cspell.json
File metadata and controls
25 lines (25 loc) · 695 Bytes
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
{
// Enable your dictionary by adding it to the list of `dictionaries`
"dictionaries": [
"core-glossary"
],
"ignoreWords": [
"skip-list"
],
// Tell CSpell about your dictionary
"dictionaryDefinitions": [
{
"name": "core-glossary",
// Path to the custom word file. Relative to this `cspell.json` file.
"path": "./.style/core-glossary.txt",
// Some editor extensions will use `addWords` for adding words to your
// personal dictionary.
"addWords": true
},
{
"name": "skip-list", //these aren't glossary words, but shouldn't be spell checked away
"path": "./.style/skip-list.txt",
"addWords": true
}
]
}