-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcspell.json
More file actions
27 lines (26 loc) · 886 Bytes
/
cspell.json
File metadata and controls
27 lines (26 loc) · 886 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
26
27
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"version": "0.2",
// Enable your dictionary by adding it to the list of `dictionaries`
"dictionaries": ["csharp", "custom-words"],
"language": "en,en-CA,softwareTerms",
"languageSettings": [
{
"languageId": "markdown",
"ignoreRegExpList": ["/`[\\s\\S]*?`/g"]
}
],
// 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.
// cspell:disable-next-line
"path": "./.vscode/spellright.dict",
// Some editor extensions will use `addWords` for adding words to your
// personal dictionary.
"addWords": true
}
]
}