-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcspell.json
39 lines (39 loc) · 1.01 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
34
35
36
37
38
39
// cSpell Settings
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
// Version of the setting file. Always 0.2
"version": "0.6",
// language - current active spelling language
"language": "en",
// enabled - enable code editor suggestions
"enabled": true,
// useGitignore - use .gitignore to exclude files from checking
"useGitignore": true,
"ignoreRegExpList": [
// Ignore filecoin f410f-like native addresses
"f410f[a-z2-7]{39}"
],
// words - list of words to be always considered correct
"words": [
"blockscout",
"BSWRF",
"bytecodes",
"Cryptostamp",
"decompiled",
"devdoc",
"filecoin",
"googlerpc",
"ipfs",
"linkreferences",
"multicall",
"poap",
"recaptcha",
"remappings",
"Resteaking",
"sourcify",
"subtraces",
"userdoc",
"xdai",
"watchlist"
]
}