-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvscode-settings.json
More file actions
76 lines (76 loc) · 2.27 KB
/
vscode-settings.json
File metadata and controls
76 lines (76 loc) · 2.27 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
{
"workbench.colorTheme": "One Dark Pro",
"oneDarkPro.vivid": true,
"atomKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.fontSize": 13,
"editor.tabSize": 2,
"editor.emptySelectionClipboard": false,
"editor.snippetSuggestions": "top",
"editor.accessibilitySupport": "off",
"editor.suggestSelection": "first",
"editor.minimap.enabled": false,
"extensions.ignoreRecommendations": false,
"todohighlight.keywords": [
{
"text": "TODO:",
"borderRadius": "3px",
"backgroundColor": "rgba(255,255,255,.3)"
}
],
"workbench.colorCustomizations": {
"editorWarning.foreground": "#FFCC00",
"editorOverviewRuler.errorForeground": "#FF007F"
},
"eslint.validate": [
"vue",
"html",
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[java]": {
"editor.formatOnSave": false
},
"[jsp]": {
"editor.formatOnSave": false
},
"typescript.updateImportsOnFileMove.enabled": "always",
"typescript.preferences.renameShorthandProperties": false,
"javascript.preferences.renameShorthandProperties": false,
"prettier.singleQuote": true,
"prettier.packageManager": "yarn",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"vetur.dev.vlsPath": "/Users/james/.config/yarn/global/node_modules/vls",
"vetur.experimental.templateInterpolationService": true,
"vetur.dev.vlsPort": 7123,
"debug.javascript.codelens.npmScripts": "never",
"window.zoomLevel": 0,
"gitlens.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.codeLens.enabled": false,
"gitlens.views.repositories.branches.layout": "list",
"todohighlight.isEnable": true,
"editor.renderWhitespace": "none"
}