forked from Consensys/docs-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cspell.json
45 lines (45 loc) · 790 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
{
"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"
],
"ignoreRegExpList": [
"Email",
"Urls",
"#[\\w-]*",
"/^\\s*```[\\s\\S]*?^\\s*```/gm"
]
}