-
Notifications
You must be signed in to change notification settings - Fork 16
/
.cspell.json
46 lines (46 loc) · 947 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"version": "0.2",
"gitignoreRoot": ".",
"useGitignore": true,
"dictionaries": [
"css",
"html",
"fonts",
"typescript",
"softwareTerms",
"companies",
"lorem-ipsum",
"project-words"
],
"dictionaryDefinitions": [
{
"name": "project-words",
"path": "./project-words.txt",
"noSuggest": true
}
],
"ignorePaths": [
"CHANGELOG.md",
"LICENSE",
"package.json",
"yarn.lock",
"project-words.txt",
"__snapshots__",
"*.min.*",
"jest/vendor",
"docusaurus.config.js",
"src/css/",
"babel.config.js",
"api/",
"docs/test-api/",
"sidebars.js",
"tsconfig.*.json",
".github/**",
"docs/Tutorials/EddsaBN254Sig.md",
"docs/Tutorials/JsonRPCProxy.md",
"docs/Tutorials/SendMetaTxn.md",
"docs/Reference/CLI/CLI-Syntax.md",
"docs/Tutorials/ConnectInfura.md"
],
"ignoreRegExpList": ["Email", "Urls", "#[\\w-]*"]
}