-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
510 lines (510 loc) Β· 16.4 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
{
"name": "nodejs-dev-pack",
"displayName": "NodeJS Dev Pack",
"description": "NodeJS development extensions kit",
"version": "1.5.0",
"engines": {
"vscode": "^1.76.0"
},
"icon": "images/ext-logo.png",
"categories": [
"Extension Packs",
"Programming Languages",
"Other"
],
"publisher": "AndrewSai",
"repository": {
"type": "git",
"url": "https://github.com/Deimos308/nodejs-dev-pack.git"
},
"extensionPack": [
"aaron-bond.better-comments",
"adam-bender.commit-message-editor",
"alefragnani.project-manager",
"christian-kohler.npm-intellisense",
"DavidAnson.vscode-markdownlint",
"dbaeumer.vscode-eslint",
"dotenv.dotenv-vscode",
"eamodio.gitlens",
"EliverLara.andromeda",
"esbenp.prettier-vscode",
"fractalbrew.backticks",
"Gruntfuggly.todo-tree",
"helgardrichard.helium-icon-theme",
"mhutchie.git-graph",
"mkxml.vscode-filesize",
"mlewand.select-part-of-word",
"ms-azuretools.vscode-docker",
"ms-vscode.vscode-js-profile-flame",
"nhoizey.gremlins",
"pnp.polacode",
"streetsidesoftware.code-spell-checker",
"Tyriar.sort-lines",
"usernamehw.errorlens",
"YoavBls.pretty-ts-errors",
"yzhang.markdown-all-in-one"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/javascript.json"
}
],
"configuration": {
"properties": {
"debug.toolBarLocation": {
"type": "string",
"default": "docked",
"description": "Location of the debug toolbar."
},
"editor.bracketPairColorization.enabled": {
"type": "boolean",
"default": true,
"description": "Enable bracket pair colorization."
},
"editor.fontLigatures": {
"type": "boolean",
"default": true,
"description": "Enable font ligatures in the editor."
},
"editor.guides.bracketPairs": {
"type": "string",
"default": "active",
"description": "Controls the visibility of bracket pair guides."
},
"editor.minimap.enabled": {
"type": "boolean",
"default": false,
"description": "Enable or disable the editor minimap."
},
"editor.renderControlCharacters": {
"type": "boolean",
"default": true,
"description": "Render control characters in the editor."
},
"editor.unicodeHighlight.ambiguousCharacters": {
"type": "boolean",
"default": false,
"description": "Highlight ambiguous Unicode characters."
},
"editor.wordBasedSuggestions": {
"type": "string",
"default": "off",
"description": "Enable or disable word-based suggestions in the editor."
},
"editor.wordWrap": {
"type": "string",
"default": "on",
"description": "Control how lines should wrap in the editor."
},
"editor.renderWhitespace": {
"type": "string",
"default": "all",
"description": "Control how whitespace is rendered in the editor."
},
"editor.rulers": {
"type": "array",
"default": [
{
"column": 100,
"color": "#FFFFaa"
}
],
"description": "Render vertical rulers after a certain number of characters."
},
"explorer.fileNesting.enabled": {
"type": "boolean",
"default": true,
"description": "Enable file nesting in the Explorer."
},
"git.autofetch": {
"type": "boolean",
"default": true,
"description": "Enable automatic fetching of Git repos."
},
"git.confirmSync": {
"type": "boolean",
"default": false,
"description": "Confirm when syncing Git repos."
},
"git.suggestSmartCommit": {
"type": "boolean",
"default": false,
"description": "Suggest smart commit messages."
},
"files.associations": {
"type": "object",
"default": {
"*.ejs": "html",
"*.eta": "html",
"*.env.?*": "dotenv",
"*.env": "dotenv"
},
"description": "File associations for specific file types."
},
"helium-icon-theme.files.associations": {
"type": "object",
"default": {
"*.eta": "ejs",
"*.schema.js": "Raml",
"*.schema.ejs": "xaml",
"*.repo.js": "database",
"*.assets.js": "aurelia",
"*.router.js": "routing",
"*.dto.js": "purescript",
"*.config.js": "settings",
"*.model.js": "sequelize",
"**.webpack.js": "webpack",
"*.scheme.js": "purescript",
"*.provider.js": "database",
"*.repository.js": "database",
"*.mapper.js": "Nest-gateway"
},
"description": "File icon associations for Helium Icon theme."
},
"helium-icon-theme.folders.associations": {
"type": "object",
"default": {
"DTO": "Ci",
"_dev": "mock",
".pm2": "hook",
"ejs": "stack",
"eta": "stack",
"build": "core",
"schema": "less",
"schemas": "less",
"router": "routes",
"local": "private",
"modules": "layout",
"amp": "serverless",
"backend": "server",
"common": "resource",
"repos": "database",
"queries": "template",
"adapters": "generator",
"providers": "database",
"sitemaps": "components",
"repository": "database"
},
"description": "Folder icon associations for Helium Icon theme."
},
"dotenv.enableAutocloaking": {
"type": "boolean",
"default": false,
"description": "Enable autocloaking of .env files."
},
"helium-icon-theme.saturation": {
"type": "number",
"default": 0.9,
"description": "Set the icon theme saturation level."
},
"helium-icon-theme.activeIconPack": {
"type": "string",
"default": "nest",
"description": "Set the active icon pack for Helium Icon theme."
},
"commit-message-editor.view.defaultView": {
"type": "string",
"default": "form",
"description": "Set the default view for the commit message editor."
},
"javascript.inlayHints.functionLikeReturnTypes.enabled": {
"type": "boolean",
"default": true,
"description": "Enable inlay hints for function return types."
},
"javascript.inlayHints.parameterNames.enabled": {
"type": "string",
"default": "literals",
"description": "Enable parameter name hints for literals."
},
"javascript.inlayHints.parameterTypes.enabled": {
"type": "boolean",
"default": true,
"description": "Enable inlay hints for parameter types."
},
"js/ts.implicitProjectConfig.checkJs": {
"type": "boolean",
"default": true,
"description": "Enable JS file checking in TS projects."
},
"js/ts.implicitProjectConfig.strictNullChecks": {
"type": "boolean",
"default": false,
"description": "Enable strict null checks in JS/TS projects."
},
"search.useGlobalIgnoreFiles": {
"type": "boolean",
"default": true,
"description": "Use global ignore files for search."
},
"search.useIgnoreFiles": {
"type": "boolean",
"default": true,
"description": "Use .gitignore for search."
},
"telemetry.telemetryLevel": {
"type": "string",
"default": "off",
"description": "Set the telemetry level for VSCode."
},
"workbench.colorTheme": {
"type": "string",
"default": "Andromeda Colorizer",
"description": "Set the color theme."
},
"workbench.iconTheme": {
"type": "string",
"default": "helium-icon-theme",
"description": "Set the icon theme."
},
"editor.stickyScroll.enabled": {
"type": "boolean",
"default": true,
"description": "Enable sticky scroll in the editor."
},
"commit-message-editor.tokens": {
"type": "array",
"default": [
{
"label": "Type",
"name": "type",
"type": "enum",
"options": [
{
"label": "---",
"value": ""
},
{
"label": "accessability",
"description": "Improve accessibility",
"value": "βΏοΈ"
},
{
"label": "analytics",
"description": "Add or update analytics or track code",
"value": "π"
},
{
"label": "assets",
"description": "Add or update assets",
"value": "π±"
},
{
"label": "build",
"description": "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)",
"value": "ποΈ"
},
{
"label": "ci",
"description": "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)",
"value": "π·"
},
{
"label": "config",
"description": "Add or update configuration files",
"value": "π§"
},
{
"label": "db",
"description": "Perform database related changes",
"value": "ποΈ"
},
{
"label": "dependencies",
"description": "Add or update compiled files or packages",
"value": "π¦οΈ"
},
{
"label": "deployment",
"description": "Deploy stuff",
"value": "π"
},
{
"label": "docs",
"description": "Documentation only changes",
"value": "π"
},
{
"label": "dx",
"description": "Improve developer experience",
"value": "π§βπ»"
},
{
"label": "feat",
"description": "A new feature",
"value": "β¨"
},
{
"label": "feat-flag",
"description": "Add, update, or remove feature flags",
"value": "π©"
},
{
"label": "fix",
"description": "Simple fix for a non-critical issue",
"value": "π©Ή"
},
{
"label": "format",
"description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
"value": "π¨"
},
{
"label": "hotfix",
"description": "Critical issue hotfix",
"value": "ποΈ"
},
{
"label": "i18n",
"description": "Internationalization and localization",
"value": "π"
},
{
"label": "lint",
"description": "Fix compiler / linter warnings.",
"value": "π¨"
},
{
"label": "merge",
"description": "Merge branches",
"value": "π"
},
{
"label": "perf",
"description": "A code change that improves performance",
"value": "β‘οΈ"
},
{
"label": "refactor",
"description": "A code change that neither fixes a bug nor adds a feature",
"value": "β»οΈ"
},
{
"label": "revert",
"description": "Revert changes",
"value": "βͺοΈ"
},
{
"label": "script",
"description": "Add or update development scripts",
"value": "π¨"
},
{
"label": "secrets",
"description": "Add or update secrets",
"value": "π"
},
{
"label": "security",
"description": "Fix security issues",
"value": "ποΈ"
},
{
"label": "seo",
"description": "Improve SEO",
"value": "ποΈ"
},
{
"label": "style",
"description": "Add or update the UI and style files.",
"value": "π"
},
{
"label": "test",
"description": "Adding missing tests or correcting existing tests",
"value": "π§ͺ"
},
{
"label": "types",
"description": "Add or update types.",
"value": "π·οΈ"
},
{
"label": "typo",
"description": "Fix typos",
"value": "βοΈ"
},
{
"label": "validation",
"description": "Add or update code related to validation",
"value": "π¦Ί"
}
]
},
{
"label": "Scope",
"name": "scope",
"description": "Additional context",
"type": "text"
},
{
"label": "Short description",
"name": "description",
"type": "text"
}
],
"description": "Commit message token configuration"
}
}
},
"keybindings": [
{
"key": "ctrl+w",
"command": "deleteWordLeft",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "ctrl+backspace",
"command": "-deleteWordLeft",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "ctrl+shift+w",
"command": "deleteWordRight",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "ctrl+delete",
"command": "-deleteWordRight",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "shift+delete",
"command": "-deleteFile",
"when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceReadonly && !inputFocus"
},
{
"key": "shift+delete",
"command": "editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "ctrl+shift+u",
"command": "editor.action.transformToUppercase",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+l",
"command": "editor.action.transformToLowercase",
"when": "editorTextFocus"
},
{
"key": "ctrl+d",
"command": "-editor.action.addSelectionToNextFindMatch",
"when": "editorFocus"
},
{
"key": "ctrl+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+i",
"command": "-editor.action.formatDocument",
"when": "editorTextFocus && !editorReadonly"
}
]
}
}