-
Notifications
You must be signed in to change notification settings - Fork 30
/
cspell.json
33 lines (33 loc) · 1.02 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
{
"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/**",
"**/coverage.json",
"**/*.hbs",
".openzeppelin/**",
".github/**",
"**/*.orig"
],
"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"}
]
}