-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathcSpell.json
More file actions
62 lines (62 loc) · 1.42 KB
/
cSpell.json
File metadata and controls
62 lines (62 loc) · 1.42 KB
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
62
// `cspell` settings
// spell-checker:ignore oranda
{
// version of the setting file
"version": "0.2",
// spelling language
"language": "en",
// custom dictionaries
"dictionaries": [
"acronyms+names",
"jargon",
"people",
"shell",
"workspace"
],
"dictionaryDefinitions": [
{
"name": "acronyms+names",
"path": "./cspell.dictionaries/acronyms+names.wordlist.txt"
},
{
"name": "jargon",
"path": "./cspell.dictionaries/jargon.wordlist.txt"
},
{
"name": "people",
"path": "./cspell.dictionaries/people.wordlist.txt"
},
{
"name": "shell",
"path": "./cspell.dictionaries/shell.wordlist.txt"
},
{
"name": "workspace",
"path": "./cspell.dictionaries/workspace.wordlist.txt"
}
],
// files to ignore (globs supported)
"ignorePaths": [
".git/**",
"Cargo.lock",
"oranda.json",
"target/**",
"tests/**/fixtures/**",
"src/uu/dd/test-resources/**",
"vendor/**",
"**/*.svg",
"src/uu/*/locales/*.ftl",
"src/uudiff/locales/*.ftl",
".devcontainer/**",
"util/gnu-patches/**",
"docs/src/release-notes/**",
"src/uu/*/benches/*.rs",
"src/uudiff/src/lib/features/benchmark.rs",
"util/check-safe-traversal.sh",
],
"enableGlobDot": true,
// words to ignore (even if they are in the flagWords)
"ignoreWords": [],
// words to always consider correct
"words": []
}