-
Notifications
You must be signed in to change notification settings - Fork 1
/
vscode-settings.json
120 lines (115 loc) · 3.14 KB
/
vscode-settings.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
{
// Workbench
"workbench.iconTheme": "material-icon-theme",
"workbench.editor.labelFormat": "short",
"workbench.startupEditor": "newUntitledFile",
"workbench.preferredLightColorTheme": "Default Dark+",
"workbench.colorTheme": "Dracula Pro",
"window.zoomLevel": 1,
// Editor settings
"editor.fontSize": 12,
"editor.lineHeight": 20,
"editor.wordWrap": "on",
"terminal.integrated.fontSize": 12,
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.organizeImports": true
},
"editor.tabSize": 2,
"editor.suggestSelection": "first",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.renderLineHighlight": "gutter",
"editor.rulers": [80, 120],
"editor.parameterHints.enabled": false,
// VSCode stuff
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.integrated.bellDuration": 10000,
"breadcrumbs.enabled": true,
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
// Emmet
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
// Format
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
// "editor.defaultFormatter": "esbenp.prettier-vscode"
},
// Extensions
"extensions.ignoreRecommendations": true,
"polacode.transparentBackground": true,
"polacode.shadow": "rgba(0, 0, 0, 0) 0px 20px 68px",
"diffEditor.ignoreTrimWhitespace": false,
"files.autoSave": "afterDelay",
"prettier.singleQuote": true,
"prettier.jsxSingleQuote": true,
"sql-formatter.uppercase": true,
"docker.showStartPage": false,
"gitlens.advanced.messages": {
"suppressGitMissingWarning": true
},
// yaml custom tags CloudFormation
"yaml.customTags": [
"!And scalar",
"!And mapping",
"!And sequence",
"!If scalar",
"!If mapping",
"!If sequence",
"!Not scalar",
"!Not mapping",
"!Not sequence",
"!Equals scalar",
"!Equals mapping",
"!Equals sequence",
"!Or scalar",
"!Or mapping",
"!Or sequence",
"!FindInMap scalar",
"!FindInMap mapping",
"!FindInMap sequence",
"!Base64 scalar",
"!Base64 mapping",
"!Base64 sequence",
"!Cidr scalar",
"!Cidr mapping",
"!Cidr sequence",
"!Ref scalar",
"!Ref mapping",
"!Ref sequence",
"!Sub scalar",
"!Sub mapping",
"!Sub sequence",
"!GetAtt scalar",
"!GetAtt mapping",
"!GetAtt sequence",
"!GetAZs scalar",
"!GetAZs mapping",
"!GetAZs sequence",
"!ImportValue scalar",
"!ImportValue mapping",
"!ImportValue sequence",
"!Select scalar",
"!Select mapping",
"!Select sequence",
"!Split scalar",
"!Split mapping",
"!Split sequence",
"!Join scalar",
"!Join mapping",
"!Join sequence",
"!Condition"
],
"yaml.format.enable": true
}