forked from streetsidesoftware/vscode-spell-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cspell.json
61 lines (61 loc) · 1.56 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"$schema": "./node_modules/@cspell/cspell-types/cspell.schema.json",
"version": "0.2",
"language": "en-US",
"flagWords": ["hte"],
"ignorePaths": [
".git",
".gitignore",
".vscodeignore",
"*.lock",
"*.log",
"*.vsix",
"*.tsv",
"**/__snapshots__/**",
"**/server.js",
"/samples",
"CHANGELOG.md",
"cspell.json",
"cspell*.{json,yaml}",
".cspell*.{json,yaml}",
"fixtures/workspaces/**",
"languageCodes.ts",
"package-lock.json",
"fixtures/_server/sampleSourceFiles/**",
"packages/_server/sampleSourceFiles/**",
"packages/client/resources/**",
"packages/client/samples/**",
"packages/client/server/**",
"packages/client/settingsViewer/**",
"spell-checker-config.schema.json",
"testFixtures"
],
"ignoreWords": [],
"dictionaryDefinitions": [
{
"name": "cities",
"path": "./sampleDictionaries/cities.txt",
"addWords": false
},
{
"name": "cspell-words",
"addWords": true,
"scope": ["workspace"],
"path": "./cspell-words.txt"
}
],
"dictionaries": ["cities", "cspell-words"],
"languageSettings": [
{
"languageId": "*",
"allowCompoundWords": false
}
],
"overrides": [
{
"filename": "package.json",
"ignoreWords": ["colour", "canot"]
}
],
"useGitignore": true
}