forked from hyperledger/besu-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cspell.json
57 lines (57 loc) · 1.06 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"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/",
"sidebars.js",
"tsconfig.*.json",
".github/**",
"__pycache__/**/*",
"docs/Reference/**",
"docs/public-networks/reference/cli/options.md",
"MAINTAINERS.md",
"CODE_OF_CONDUCT.md",
"CHANGELOG.md"
],
"ignoreRegExpList": [
"Email",
"Urls",
"#[\\w-]*",
"/^\\s*```[\\s\\S]*?^\\s*```/gm",
"/^\\s*`[\\s\\S]*?^\\s*`/gm",
"`[^`]*`",
"\\|[^\\n]+\\|",
"\\|[^\n]+",
"[^\n]+\\|",
"\\|[^\n]+\\|[^\n]+\\|"
]
}