-
Notifications
You must be signed in to change notification settings - Fork 25
/
.textlintrc
47 lines (47 loc) · 1.4 KB
/
.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
{
"filters": {
"comments": true
},
"rules": {
"terminology": {
"defaultTerms": true,
// Syntax elements to skip, e.g. Link, Table etc. Overrides the default
// that doesn't check blockquotes, we want to check everything.
"skip": [""],
"exclude": [
"bug[- ]fix(es)?",
"walk-through",
"readme(s)?"
],
"terms": [
["bug[-]fix(es)?", "bug fix$1"],
["bugfix(es)?", "bug fix$1"],
["walkthrough", "walk-through"],
["readme['’:]?(s)?", "README$1"],
["ax(is)?[ ]?os", "AXIS OS"],
["artpec[-_ ]?(\\d+)?", "ARTPEC-$1"],
"VAPIX",
"ACAP documentation",
"ACAP Native SDK",
"ACAP SDK",
["acap app(lication)?(s)?", "ACAP app$1$2"],
["ACAPs", "ACAP applications"], // Note that it doesn't cover single
// use of ACAP instead of ACAP app or
// ACAP application
"ACAP",
"EAP",
"RGB",
"YUV",
["dlpu['’:]?(s)?", "DLPU$1"],
["cpu['’:]?(s)?", "CPU$1"],
["gpu['’:]?(s)?", "GPU$1"],
["tpu['’:]?(s)?", "TPU$1"],
["cgi['’:]?(s)?", "CGI$1"],
["soc['’:]?(s)?","SoC$1"],
["system(-| )on(-| )(a-|a )?chip(s)?", "system$1on$2chip$4"],
"YOLO",
["yolo[ ]?v(\\d+)+", "YOLOv$1"]
]
}
}
}