-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (62 loc) · 1.68 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
{
"name": "BuildOutputColorizer",
"publisher": "SteveBushResearch",
"displayName": "Build Output Colorizer",
"description": "Colorizes output log for VSCode hosted builds",
"version": "0.1.6",
"repository": { "url": "https://github.com/sgbush/buildoutputcolorizer" },
"license": "MIT",
"icon": "assets/b-o-c-icon.png",
"engines": {
"vscode": "^1.73.0"
},
"categories": [
"Formatters"
],
"contributes": {
"configurationDefaults": {
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope" : "markup.other.log.error",
"settings": { "foreground": "#FF0000" }
},
{
"scope" : "markup.other.log.warn",
"settings": { "foreground": "#c500f7cc" }
},
{
"scope" : "markup.other.log.info",
"settings": { "foreground": "#2cd3c5" }
},
{
"scope" : "markup.other.log.debug",
"settings": { "foreground": "#888585" }
},
{
"scope" : "markup.other.log.highlight",
"settings": { "foreground": "#19ff04" }
}
]
}
},
"languages": [
{
"id": "Log",
"configuration": "./language-configuration.json",
"mimetypes": [ "log", "text/log", "text/x-log", "text/x-code-output", "x-code-output" ]
}
],
"grammars": [
{
"language": "Log",
"scopeName": "code.log",
"path": "./syntaxes/log.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.block.cpp": "c++",
"source.cpp": "c++"
}
}
]
}
}