forked from craftcms/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.textlintrc
46 lines (46 loc) · 970 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
{
"filters": {
"comments": true
},
"rules": {
"apostrophe": true,
"no-todo": true,
"linkable-params": true,
"terminology": {
"defaultTerms": true,
"skip": ["Image", "Code"],
"terms": [
"Plugin Store",
"Craft ID",
["(\\s)pdf", "PDF"],
["(\\s)png", "PNG"],
["(\\s)jpg", "JPG"],
["(\\s)gif", "GIF"],
["(\\s)html", "HTML"],
["(\\s)css", "CSS"],
["(\\s)url", "URL"],
["grey", "gray"],
["sub-folder", "subfolder"],
["CP", "control panel"],
["e-commerce", "ecommerce"],
["web-?root", "web root"]
],
"exclude": [
"front[- ]end(\\w*)",
"back[- ]end(\\w*)",
"command ?line",
"PDF",
"PNG",
"JPG",
"GIF",
"HTML",
"CSS",
"ID",
"Markdown",
"URL",
"walk[- ]through",
"web[- ]?site(s)?"
]
}
}
}