-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (55 loc) · 1.48 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
{
"name": "vscode-output-highlight",
"publisher": "noimank",
"displayName": "Output Highlight",
"description": "Highlight output log for VSCode hosted builds",
"version": "0.1.10",
"repository": { "url": "https://github.com/noimank/vscode-output-highlight" },
"license": "MIT",
"icon": "assets/logo.png",
"engines": {
"vscode": "^1.73.0"
},
"categories": [
"Formatters"
],
"contributes": {
"configurationDefaults": {
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope" : "OutputHightlight.log.error",
"settings": { "foreground": "#FF0000" }
},
{
"scope" : "OutputHightlight.log.warning",
"settings": { "foreground": "#f1f52acc" }
},
{
"scope" : "OutputHightlight.log.info",
"settings": { "foreground": "#2cd3c5" }
},
{
"scope" : "OutputHightlight.log.debug",
"settings": { "foreground": "#888585" }
}
]
}
},
"languages": [
{
"id": "log",
"aliases": [ "Log" ],
"configuration": "./language-configuration.json",
"mimetypes": [ "log", "text/log", "text/x-log", "text/x-code-output", "x-code-output" ]
}
],
"grammars": [
{
"language": "log",
"scopeName": "OutputHightlight.log",
"path": "./syntaxes/log.tmLanguage.json"
}
]
}
}