-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
188 lines (188 loc) · 4.55 KB
/
package.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
{
"name": "todo",
"displayName": "TODO",
"description": "Hightlight TODOs in comments",
"version": "0.1.3",
"engines": {
"vscode": "^1.61.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"publisher": "DanielAtanasov",
"icon": "images/kochan.png",
"repository": {
"type": "git",
"url": "https://github.com/Daniel-Atanasov/todo-highlight.git"
},
"main": "./out/extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "TODO",
"properties": {
"todo.annotations": {
"type": "array",
"description": "All annotation that should be matched within comments in all languages",
"default": [
{
"name": "todo",
"pattern": "TODO(@[_a-zA-Z0-9]+)?:",
"color": "#ffcc00",
"isMarkdown": true
},
{
"name": "note",
"pattern": "NOTE(@[_a-zA-Z0-9]+)?:",
"color": "#00bbbb",
"isMarkdown": true
},
{
"name": "bug",
"pattern": "BUG(@[_a-zA-Z0-9]+)?:",
"color": "#ff8800",
"isMarkdown": true
}
],
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of this annotation type"
},
"color": {
"type": "string",
"description": "Foreground color of this annotation"
},
"pattern": {
"type": "string",
"description": "Regular expression that matches this annotation"
},
"isMarkdown": {
"type": "boolean",
"description": "Whether this annotation consists of markdown text"
},
"breakAfterInline": {
"type": "boolean",
"description": "Whether to stop if there is more text after the annotation on the same line"
}
}
}
},
"todo.languages": {
"type": "array",
"description": "Descriptions of languages and their comment types",
"default": [
{
"allowEmptyLines": true,
"annotations": [],
"languageIds": [
"javascript",
"typescript",
"c",
"cpp",
"objective-c",
"objective-cpp",
"csharp",
"java"
],
"prefixes": [
"//",
"*"
]
},
{
"allowEmptyLines": true,
"annotations": [],
"languageIds": [
"python",
"cython",
"cmake"
],
"prefixes": [
"#"
]
}
],
"items": {
"type": "object",
"properties": {
"allowEmptyLines": {
"items": {
"type": "boolean",
"description": "Allows annotations with whitespace prefixes"
}
},
"languageIds": {
"items": {
"type": "string",
"description": "Language ids which should be annotated with these types of comments"
}
},
"prefixes": {
"items": {
"type": "string",
"description": "Prefixes to look for before decorating an annotation"
}
},
"annotations": {
"type": "array",
"description": "All annotation that should be matched within comments in these languages",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of this annotation type"
},
"color": {
"type": "string",
"description": "Foreground color of this annotation"
},
"pattern": {
"type": "string",
"description": "Regular expression that matches this annotation"
},
"isMarkdown": {
"type": "boolean",
"description": "Whether this annotation consists of markdown text"
},
"breakAfterInline": {
"type": "boolean",
"description": "Whether to stop if there is more text after the annotation on the same line"
}
}
}
}
}
}
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "14.x",
"@types/vscode": "^1.59.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"glob": "^7.1.7",
"mocha": "^10.2.0",
"typescript": "^4.3.2",
"vscode-test": "^1.5.2"
}
}