-
Notifications
You must be signed in to change notification settings - Fork 0
/
cspell.json
40 lines (34 loc) · 1.12 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
// cSpell settings for the wpTails repository.
{
// Use most recent cSpell json schema.
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
// Current version of this setting file.
// Do Not Change!
"version": "0.2",
// This is the main language for this repository
"language": "en",
// Don't bother spell checking ignored files.
"useGitignore": true,
// Additionally ignore these paths and files.
"ignorePaths": [ "/package.json", "/node_modules/", "/wpTails-dict.txt", "/wpTails.code-workspace" ],
// Add custom Dictionary File
"dictionaries": [ "wpTails Dictionary", "companies", "softwareTerms" ],
"dictionaryDefinitions": [
{
"name": "wpTails Dictionary",
"path": "./wpTails-dict.txt",
"addWords": true
}
],
// Language setting for specific file types
"languageSettings": [
{
"languageId": "*",
"locale": [ "en_us", "en_gb" ]
},
{
"languageId": "markdown",
"caseSensitive": true
}
]
}