-
-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathcspell-tools.config.yaml
More file actions
137 lines (133 loc) · 4.08 KB
/
cspell-tools.config.yaml
File metadata and controls
137 lines (133 loc) · 4.08 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# yaml-language-server: $schema=https://raw.githubusercontent.com/streetsidesoftware/cspell/main/packages/cspell-tools/cspell-tools.config.schema.json
targets:
- name: 'cpp'
sources:
- filename: src/additional-terms.txt
- filename: src/cpp2.txt
split: true
- filename: src/cpp3.txt
split: true
- filename: src/cpp.txt
split: true
allowedSplitWords:
- ../en_US/en_US.trie
- ../software-terms/dict/softwareTerms.txt
- ../software-terms/dict/software-tools.txt
- src/allowed-terms.txt
- src/compiler-clang-attributes.txt
- src/compiler-gcc.txt
- src/compiler-msvc.txt
- src/compound-words.txt
- src/cpp.txt
- src/cpp3.txt
- src/ecosystem.txt
- src/lang-jargon.txt
- src/lang-keywords.txt
- src/people.txt
- src/stdlib-c.txt
- src/stdlib-cerrno.txt
- src/stdlib-cmath.txt
- src/stdlib-cpp.txt
- src/template-strings.txt
# storeSplitWordsAsCompounds: true
# minCompoundLength: 3
- filename: src/allowed-terms.txt
split: true
excludeWordsFrom:
- src/exclude-terms.txt
format: plaintext
targetDirectory: './dict'
generateNonStrict: false
compress: true
keepUncompressed: true
removeDuplicates: true
sort: true
- name: cpp-refined
sources:
- listFile: source-files-cpp-refined.txt
split: true
# allowedSplitWords:
# - ../en_US/en_US.trie
# - ../software-terms/dict/softwareTerms.txt
excludeWordsFrom:
- src/exclude-terms.txt
format: plaintext
targetDirectory: './dict'
generateNonStrict: false
removeDuplicates: true
compress: true
keepUncompressed: true
- name: cpp-compound-words
sources:
- filename: src/additional-terms.txt
- filename: src/cpp2.txt
split: true
- filename: src/cpp3.txt
split: true
- filename: src/cpp.txt
split: true
allowedSplitWords:
- ../en_US/en_US.trie
- ../software-terms/dict/softwareTerms.txt
- ../software-terms/dict/software-tools.txt
- src/allowed-terms.txt
- src/compiler-clang-attributes.txt
- src/compiler-gcc.txt
- src/compiler-msvc.txt
- src/compound-words.txt
- src/cpp.txt
- src/cpp3.txt
- src/ecosystem.txt
- src/lang-jargon.txt
- src/lang-keywords.txt
- src/people.txt
- src/stdlib-c.txt
- src/stdlib-cerrno.txt
- src/stdlib-cmath.txt
- src/stdlib-cpp.txt
- src/template-strings.txt
storeSplitWordsAsCompounds: true
minCompoundLength: 3
- filename: src/compound-words.txt
excludeWordsFrom:
- src/exclude-terms.txt
format: plaintext
targetDirectory: './dict'
generateNonStrict: false
removeDuplicates: true
compress: true
keepUncompressed: true
- name: 'cpp-legacy'
sources:
- filename: src/cpp-legacy-words.txt # these are included until we can find a better way
split: true
allowedSplitWords:
- ../en_US/en_US.trie
- ../software-terms/dict/softwareTerms.txt
- src/cpp.txt
- src/allowed-terms.txt
- src/compiler-clang-attributes.txt
- src/compiler-gcc.txt
- src/compiler-msvc.txt
- src/ecosystem.txt
- src/lang-jargon.txt
- src/lang-keywords.txt
- src/people.txt
- src/stdlib-c.txt
- src/stdlib-cerrno.txt
- src/stdlib-cmath.txt
- src/stdlib-cpp.txt
- src/template-strings.txt
format: plaintext
excludeWordsFrom:
- dict/cpp.txt
- dict/cpp-refined.txt
- dict/cpp-compound-words.txt
- ../en_US/en_US.trie
- ../software-terms/dict/softwareTerms.txt
- src/exclude-terms.txt
targetDirectory: './dict'
generateNonStrict: false
removeDuplicates: true
compress: true
keepUncompressed: true