-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
151 lines (151 loc) · 4.53 KB
/
package.json
File metadata and controls
151 lines (151 loc) · 4.53 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
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
{
"name": "statusbarerror",
"version": "0.4.0",
"publisher": "JoeBerria",
"engines": {
"vscode": "^1.40.0"
},
"author": {
"name": "Joe Berria",
"email": "joeberria@gmail.com"
},
"description": "Show error and warning messages in the status bar, gutter or on the current line",
"displayName": "Statusbar error",
"keywords": [
"diagnostic",
"statusbar",
"gutter",
"decorator",
"error",
"warning",
"lint"
],
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/nexes/statusbar-error.git"
},
"icon": "images/icon.png",
"main": "./out/extension",
"activationEvents": [
"*"
],
"extensionKind": [
"ui"
],
"contributes": {
"configuration": {
"title": "Statusbar Error Configuration",
"properties": {
"statusbarerror.statusbar.show": {
"type": "boolean",
"default": true,
"description": "Show the linter message in the statusbar"
},
"statusbarerror.wholeLine.show": {
"type": "boolean",
"default": false,
"description": "Show the linter message on the line"
},
"statusbarerror.gutter.error.show": {
"type": "boolean",
"default": true,
"description": "Show a gutter icon for errors"
},
"statusbarerror.gutter.warning.show": {
"type": "boolean",
"default": true,
"description": "Show a gutter icon for warnings"
},
"statusbarerror.gutter.hint.show": {
"type": "boolean",
"default": true,
"description": "Show a gutter icon for hints"
},
"statusbarerror.gutter.info.show": {
"type": "boolean",
"default": true,
"description": "Show a gutter icon for information"
},
"statusbarerror.color.warning": {
"type": "string",
"default": "#f4b81f",
"description": "Font color for the linter warnings in the statusbar"
},
"statusbarerror.color.error": {
"type": "string",
"default": "#f41f1f",
"description": "Font color for the linter errors in the statusbar"
},
"statusbarerror.color.info": {
"type": "string",
"default": "#41e086",
"description": "Font color for the linter information in the statusbar"
},
"statusbarerror.color.hint": {
"type": "string",
"default": "#35b1f4",
"description": "Font color for the linter hints in the statusbar"
},
"statusbarerror.icon.warning": {
"type": "string",
"default": "⭕️",
"description": "Unicode icon for linter warnings in the statusbar"
},
"statusbarerror.icon.error": {
"type": "string",
"default": "❌",
"description": "Unicode icon for linter errors in the statusbar"
},
"statusbarerror.icon.info": {
"type": "string",
"default": "❓",
"description": "Unicode icon for linter info in the statusbar"
},
"statusbarerror.icon.hint": {
"type": "string",
"default": "⭐️",
"description": "Unicode icon for linter hints in the statusbar"
},
"statusbarerror.wholeLine.length": {
"type": "number",
"default": 0,
"description": "Truncate whole line messages at this length (0 will not truncate)"
},
"statusbarerror.wholeLine.errorColor": {
"type": "string",
"default": "#d32f2f88",
"description": "Background color of the line when an error is found"
},
"statusbarerror.wholeLine.warningColor": {
"type": "string",
"default": "#ff980088",
"description": "Background color of the line when a warning is found"
},
"statusbarerror.wholeLine.errorFontColor": {
"type": "string",
"default": "#efefef",
"description": "Font color of the error line message"
},
"statusbarerror.wholeLine.warningFontColor": {
"type": "string",
"default": "#000000",
"description": "Font color of the warning line message"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"watch": "tsc -watch -p ./",
"compile": "tsc -p ./"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.40.0",
"typescript": "^3.9.4"
},
"license": "MIT"
}