-
Notifications
You must be signed in to change notification settings - Fork 0
/
.todolintrc.json
60 lines (60 loc) · 1.07 KB
/
.todolintrc.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
58
59
60
{
"root": ["test/root1", "test/root2"],
"warn": {
"limit": 4,
"tags": [ "TODO", "FIXME", "HACK", "BUG", "XXX" ],
"message": "",
"fail": true
},
"tags": [
{
"name": "TODO",
"regex": "TODO",
"label": "✓ TODO",
"style": ["cyan"]
},
{
"name": "NOTE",
"regex": "NOTE",
"label": "✐ NOTE",
"style": ["green"]
},
{
"name": "FIXME",
"regex": "FIXME",
"label": "⚠ FIXME",
"style": ["red"]
},
{
"name": "BUG",
"regex": "BUG",
"label": "☠ BUG",
"style": ["white", "bgRed", "underline"]
},
{
"name": "HACK",
"regex": "HACK",
"label": "✄ HACK",
"style": ["yellow"]
},
{
"name": "XXX",
"regex": "XXX",
"label": "✗ XXX",
"style": ["black", "bgYellow"]
},
{
"name": "OPTIMIZE",
"regex": "OPTIMIZE",
"label": "↻ OPTIMIZE",
"style": ["blue"]
}
],
"ignore": [
".git",
"node_modules",
"**/*.swp",
"**/ignore",
"**/ignore.txt"
]
}