-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode.json
49 lines (49 loc) · 1.51 KB
/
vscode.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
{
"window.zoomLevel": -1,
"editor.fontFamily": "Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 16,
"editor.lineHeight": 24,
"editor.letterSpacing": 0.5,
"workbench.editor.tabSizing": "shrink",
"html.format.enable": true,
"html.format.preserveNewLines": true,
"files.trimTrailingWhitespace": true,
"editor.tabSize": 2,
"editor.cursorStyle": "line",
"editor.wordWrap": "on",
"editor.multiCursorModifier": "ctrlCmd",
"editor.fontWeight": "400",
"editor.cursorBlinking": "solid",
"editor.colorDecorators": false,
"editor.minimap.enabled": false,
"workbench.activityBar.visible": true,
"workbench.sideBar.location": "left",
"editor.renderWhitespace": "none",
"editor.rulers": 80,
"editor.minimap.showSlider": "always",
"workbench.startupEditor": "newUntitledFile",
"extensions.ignoreRecommendations": false,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.next": true
},
"workbench.colorTheme": "Cobalt2",
"workbench.editor.tabCloseButton": "off",
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"editor.snippetSuggestions": "top",
"workbench.editor.enablePreviewFromQuickOpen": false,
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
"sublimeTextKeymap.promptV3Features": true,
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": false
},
"eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true
}