-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.82 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
{
"name": "vscode-configs",
"displayName": "Seudev's VSCode configs",
"description": "The Seudev's Visual Studio Code configs",
"version": "0.0.1",
"author": "Thomás Sousa Silva <thomassousa.dev>",
"publisher": "Seudev",
"icon": "images/logo.png",
"homepage": "https://github.com/seudev/vscode-configs",
"license": "Apache-2.0",
"engines": {
"vscode": "^1.93.0"
},
"categories": [
"Other"
],
"contributes": {
"configurationDefaults": {
"workbench.editor.highlightModifiedTabs": true,
"search.showLineNumbers": true,
"scm.alwaysShowRepositories": true,
"terminal.explorerKind": "both",
"problems.showCurrentInStatus": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.minimap.showSlider": "always",
"editor.quickSuggestions": {
"comments": "on",
"strings": "on"
},
"editor.suggest.preview": true,
"editor.suggest.showStatusBar": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"git.branchProtection": ["main", "master"],
"html.format.indentInnerHtml": true,
"cSpell.language": "en",
"cSpell.showAutocompleteSuggestions": true,
"telemetry.telemetryLevel": "error",
"gitlens.telemetry.enabled": false,
"redhat.telemetry.enabled": false,
"rest-client.enableTelemetry": false,
"rest-client.previewOption": "exchange",
"rest-client.logLevel": "verbose",
"codesnap.shutterAction": "copy",
"codesnap.transparentBackground": true,
"gitHistory.includeRemoteBranches": true,
"go.inlayHints.assignVariableTypes": true,
"go.inlayHints.constantValues": true,
"go.inlayHints.functionTypeParameters": true,
"go.inlayHints.parameterNames": true,
"go.inlayHints.rangeVariableTypes": true,
"go.inlayHints.compositeLiteralFields": true,
"go.lintTool": "golangci-lint",
"cSpell.ignorePaths": [
"package-lock.json",
"node_modules",
"vscode-extension",
".git/objects",
".vscode",
".vscode-insiders",
".devcontainer/devcontainer.json"
],
"todo-tree.general.showActivityBarBadge": true,
"todo-tree.tree.showCountsInTree": true,
"todo-tree.highlights.useColourScheme": true,
"workbench.editor.enablePreview": false,
"workbench.startupEditor": "none",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[xml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[less]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/seudev/vscode-configs.git"
},
"bugs": {
"url": "https://github.com/seudev/vscode-configs/issues"
},
"keywords": [
"config",
"vscode",
"Seudev"
],
"scripts": {
"build-readme": "node src/ReadmeBuilder.js",
"build": "npm run build-readme && vsce package",
"prepublishOnly": "npm run build",
"publish": "vsce publish -p $ACCESS_TOKEN"
}
}