forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcspell-tools.config.yaml
87 lines (84 loc) · 2.61 KB
/
cspell-tools.config.yaml
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
# 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
- 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
- filename: src/compound-words.txt
format: plaintext
targetDirectory: './dict'
generateNonStrict: false
compress: false
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
format: plaintext
targetDirectory: './dict'
generateNonStrict: false
removeDuplicates: true
compress: false
- 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
- ../en_US/en_US.trie
- ../software-terms/dict/softwareTerms.txt
targetDirectory: './dict'
generateNonStrict: false
removeDuplicates: true
compress: false