-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
88 lines (88 loc) · 2.97 KB
/
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
{
"blueprint.templatesPath": ["./blueprint-templates", "~/blueprint-templates"],
"bookmarks.sideBar.expanded": true,
"breadcrumbs.enabled": true,
"editor.autoIndent": "advanced",
"editor.bracketPairColorization.enabled": true,
"editor.folding": true,
"editor.fontFamily": "'Input Mono', Monaco, 'Courier New', monospace",
"editor.gotoLocation.multipleDefinitions": "goto",
"editor.minimap.enabled": false,
"editor.quickSuggestions": true,
"editor.renderWhitespace": "selection",
"editor.rulers": [120],
"editor.scrollBeyondLastLine": false,
"editor.smoothScrolling": true,
"editor.snippetSuggestions": "inline",
"editor.wordWrap": "off",
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"explorer.openEditors.visible": 0,
"files.associations": {
".stylelintrc": "json"
},
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.svn": true,
"**/build": true,
"**/compile": true,
"**/node_modules": true
},
"files.insertFinalNewline": true,
"git.confirmSync": false,
"git.pullTags": false,
"gitlens.codeLens.enabled": false,
"gitlens.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.keymap": "chorded",
"gitlens.showWhatsNewAfterUpgrades": false,
"gitlens.statusBar.alignment": "left",
"incrementor.enums.values": [
["false", "true"],
["let", "const"],
["margin-left", "margin-bottom", "margin-right", "margin-top"],
["padding-left", "padding-bottom", "padding-right", "padding-top"],
["padding", "margin"],
["border-left", "border-bottom", "border-right", "border-top"],
["none", "flex", "inline-block", "inline", "block"],
[
"space-evenly",
"space-between",
"space-around",
"stretch",
"baseline",
"center",
"flex-end",
"flex-start"
]
],
"javascript.inlayHints.parameterNames.enabled": "literals",
"jest.autoRun": "off",
"less.validate": false,
"search.smartCase": true,
"svg.preview.boundingBox": false,
"telemetry.telemetryLevel": "error",
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.shell.osx": "/bin/zsh",
"typescript.inlayHints.parameterNames.enabled": "literals",
"typescript.inlayHints.parameterTypes.enabled": true,
"typescript.npm": "/Users/sebastian/.nvm/versions/node/v14.16.1/bin/npm",
"vsicons.dontShowNewVersionMessage": true,
"window.openFilesInNewWindow": "off",
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
"window.zoomLevel": 0,
"workbench.colorTheme": "GitHub Light",
"workbench.commandPalette.preserveInput": true,
"workbench.editor.enablePreview": false,
"workbench.editor.labelFormat": "short",
"workbench.editor.openPositioning": "last",
"workbench.enableExperiments": false,
"workbench.iconTheme": "vscode-icons",
"workbench.preferredDarkColorTheme": "Monokai",
"workbench.preferredLightColorTheme": "GitHub Light",
"workbench.quickOpen.preserveInput": true,
"workbench.settings.enableNaturalLanguageSearch": false,
"workbench.startupEditor": "newUntitledFile",
"workbench.tree.indent": 20
}