-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
163 lines (163 loc) · 4.39 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
{
"name": "errorlens",
"displayName": "ErrorLens",
"description": "Improve the highlighting of errors, warnings and other language diagnostics.",
"version": "1.1.3",
"publisher": "PhilHindle",
"author": {
"name": "Phil Hindle"
},
"engines": {
"vscode": "^1.24.0"
},
"categories": [
"Other"
],
"keywords": [
"highlight",
"highlighter",
"code highlighter",
"diagnostics",
"multi-root ready"
],
"galleryBanner": {
"color": "#332020",
"theme": "dark"
},
"icon": "images/errorlens-icon.png",
"repository": {
"type": "git",
"url": "https://github.com/phindle/error-lens"
},
"activationEvents": [
"*"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "ErrorLens.enable",
"title": "Enable ErrorLens",
"category": "ErrorLens"
},
{
"command": "ErrorLens.disable",
"title": "Disable ErrorLens",
"category": "ErrorLens"
}
],
"configuration": {
"properties": {
"errorLens.errorColor": {
"type": "string",
"default": "rgba(240,0,0,0.4)",
"description": "The background color used to highlight lines containing errors. (Alpha is used)"
},
"errorLens.errorTextColor": {
"type": "string",
"default": "rgba(240,240,240,1.0)",
"description": "The text color used to highlight lines containing errors. (Alpha is used)"
},
"errorLens.warningColor": {
"type": "string",
"default": "rgba(180,180,0,0.4)",
"description": "The background color used to highlight lines containing warnings. (Alpha is used)"
},
"errorLens.warningTextColor": {
"type": "string",
"default": "rgba(240,240,240,1.0)",
"description": "The text color used to highlight lines containing warnings. (Alpha is used)"
},
"errorLens.infoColor": {
"type": "string",
"default": "rgba(0,200,0,0.4)",
"description": "The background color used to highlight lines containing info. (Alpha is used)"
},
"errorLens.infoTextColor": {
"type": "string",
"default": "rgba(240,240,240,1.0)",
"description": "The text color used to highlight lines containing info. (Alpha is used)"
},
"errorLens.hintColor": {
"type": "string",
"default": "rgba(20,140,140,0.4)",
"description": "The background color used to highlight lines containing hints. (Alpha is used)"
},
"errorLens.hintTextColor": {
"type": "string",
"default": "rgba(240,240,240,1.0)",
"description": "The text color used to highlight lines containing hints. (Alpha is used)"
},
"errorLens.fontStyle": {
"type": "string",
"enum": [
"normal",
"italic"
],
"default": "italic",
"description": "Show ErrorLens annotations in Italics, or not?"
},
"errorLens.fontWeight": {
"type": "string",
"enum": [
"100",
"200",
"300",
"normal",
"500",
"600",
"700",
"800",
"900"
],
"default": "normal",
"description": "Specifies the font weight for ErrorLens annotations."
},
"errorLens.fontMargin": {
"type": "string",
"default": "40px",
"description": "Distance between end of the code line, and the start of the ErrorLens annotation. (CSS units)."
},
"errorLens.enabledDiagnosticLevels": {
"type": "array",
"description": "Specify which diagnostic levels are enhanced. e.g. [ 'error', 'warning' ]. Valid values are any or all of: 'error', 'warning', 'info' & 'hint'",
"default": [
"error",
"warning",
"info",
"hint"
]
},
"errorLens.statusBarControl": {
"type": "string",
"enum": [
"always",
"never",
"hide-when-no-issues"
],
"description": "Specify when the ErrorLens status bar text should be shown.",
"default": "hide-when-no-issues"
},
"errorLens.addAnnotationTextPrefixes": {
"type": "boolean",
"description": "If 'true', prefixes the diagnostic severity ('Error:', 'Warning:' etc) to ErrorLens annotations.",
"default": true
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.71",
"tslint": "^5.11.0",
"typescript": "^2.6.1",
"vscode": "^1.1.21"
}
}