-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.textlintrc
50 lines (50 loc) · 906 Bytes
/
.textlintrc
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
{
"filters": {},
"rules": {
"@textlint-rule/no-unmatched-pair": true,
"alex": {
"allow": []
},
"apostrophe": true,
"common-misspellings": {
"ignore": []
},
"diacritics": {
// List of additional words
"words": []
},
"no-dead-link": {
ignore: [
"http://localhost:8000"
]
},
"no-todo": true,
"spelling": {
"language": "en",
"skipPatterns": [
"/\\d+/g",
"/\[.+\]\(.+\)/g",
"GatsbyJS",
"Gregor Martynus",
"js",
"/Loadsmart/i",
"https",
"localhost",
"microblogging",
"Morocho",
"Netlify",
"/Gmail/i",
"SDK",
"Backends",
"you’ve",
"Frontends",
"SREs",
"/json/i",
"HackerRank"
]
},
"terminology": {
"defaultTerms": true
}
}
}