forked from OneKeyHQ/app-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcspell.json
More file actions
49 lines (49 loc) · 1.21 KB
/
cspell.json
File metadata and controls
49 lines (49 loc) · 1.21 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
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"version": "0.2",
"language": "en",
"words": [],
"dictionaries": ["custom-words"],
"dictionaryDefinitions": [
{
"name": "custom-words",
"path": "./development/spellCheckerSkipWords.txt",
"addWords": true
}
],
"ignoreRegExpList": [
"/\\w{50,}/",
"/bip32/i",
"/pbkdf2/i",
"/Secp256k1/i",
"/googleapis/i",
"/Erc20/i",
"/Erc721/i",
"/Erc1155/i",
"/protobufjs/i",
"/boc/i",
"/seqno/i",
"/jetton/i",
"/Nano/i",
"/Bounceable/i",
"/scdo/i",
"/faq/i",
"/atto/i",
"/alephium/i",
"/Preauthorized/i",
"http://[^\\s]*"
],
"minWordLength": 4,
"ignorePaths": [
"node_modules",
"apps/desktop/public/static/js-sdk*",
"packages/components/src/primitives/Icon/Icons.tsx",
"packages/components/src/primitives/Icon/react/*",
"packages/shared/src/modules3rdParty/stripe-v3/*",
"packages/core/src/chains/xmr/sdkXmr/moneroCore/moneroCore.js",
"packages/shared/src/locale/enum/translations.ts",
"packages/shared/src/locale/localeJsonMap.ts",
"packages/shared/src/locale/json/*",
"*.wasm.bin"
]
}