-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.83 KB
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
{
"name": "todo-highlighter-pro",
"displayName": "TODO Highlighter Pro",
"description": "Highlight TODOs, FIXMEs, HACKs and more in your code. Browse all annotations in a sidebar tree view.",
"version": "1.0.0",
"publisher": "chraphouse",
"author": "Adam Chraibi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chraphouse/todo-highlighter-pro"
},
"engines": {
"vscode": "^1.80.0"
},
"categories": ["Other", "Programming Languages"],
"keywords": ["todo", "fixme", "hack", "highlight", "annotations", "comments"],
"icon": "icon.png",
"activationEvents": ["onStartupFinished"],
"main": "./extension.js",
"contributes": {
"views": {
"explorer": [
{
"id": "todoHighlighterView",
"name": "TODOs",
"icon": "$(checklist)",
"contextualTitle": "TODO Highlighter"
}
]
},
"commands": [
{
"command": "todoHighlighter.refresh",
"title": "Refresh TODOs",
"icon": "$(refresh)"
},
{
"command": "todoHighlighter.toggleHighlight",
"title": "Toggle TODO Highlighting"
}
],
"menus": {
"view/title": [
{
"command": "todoHighlighter.refresh",
"when": "view == todoHighlighterView",
"group": "navigation"
}
]
},
"configuration": {
"title": "TODO Highlighter",
"properties": {
"todoHighlighter.keywords": {
"type": "array",
"default": [
{ "text": "TODO", "color": "#fbbf24", "backgroundColor": "rgba(251,191,36,0.15)" },
{ "text": "FIXME", "color": "#ef4444", "backgroundColor": "rgba(239,68,68,0.15)" },
{ "text": "HACK", "color": "#f97316", "backgroundColor": "rgba(249,115,22,0.15)" },
{ "text": "BUG", "color": "#ef4444", "backgroundColor": "rgba(239,68,68,0.15)" },
{ "text": "NOTE", "color": "#3b82f6", "backgroundColor": "rgba(59,130,246,0.15)" },
{ "text": "OPTIMIZE", "color": "#8b5cf6", "backgroundColor": "rgba(139,92,246,0.15)" },
{ "text": "REVIEW", "color": "#22c55e", "backgroundColor": "rgba(34,197,94,0.15)" }
],
"description": "Keywords to highlight with their colors"
},
"todoHighlighter.enabled": {
"type": "boolean",
"default": true,
"description": "Enable/disable highlighting"
},
"todoHighlighter.exclude": {
"type": "array",
"default": ["**/node_modules/**", "**/dist/**", "**/build/**", "**/.git/**"],
"description": "Glob patterns to exclude from scanning"
},
"todoHighlighter.maxFiles": {
"type": "number",
"default": 500,
"description": "Maximum number of files to scan in the workspace"
}
}
}
}
}