-
Notifications
You must be signed in to change notification settings - Fork 6
/
cspell.json
29 lines (29 loc) · 949 Bytes
/
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
{
"version": "0.2",
"language": "en",
"ignorePaths": [
"yarn-error.log",
".gitignore",
"cspell.json",
".solhint.json",
"dictionaries/**/*",
"cache/**/*",
"artifacts/**/*",
"typechain-types/**/*",
"coverage/**/*",
"**/venv/**/*",
"**/requirements.txt",
"**/__pycache__/**",
"**/*.egg-info/**",
"**/dist/**",
"**/artifacts/**"
],
"dictionaries": ["domain-terms", "libraries", "names", "skale-terms", "solidity"],
"dictionaryDefinitions": [
{ "name": "skale-terms", "path": "./dictionaries/skale-terms.txt"},
{ "name": "libraries", "path": "./dictionaries/libraries.txt"},
{ "name": "domain-terms", "path": "./dictionaries/domain-terms.txt"},
{ "name": "names", "path": "./dictionaries/names.txt"},
{ "name": "solidity", "path": "./dictionaries/solidity.txt"}
]
}