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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
| { "editor.formatOnSave": true, "editor.acceptSuggestionOnCommitCharacter": true, "editor.acceptSuggestionOnEnter": "on", "editor.accessibilitySupport": "auto", "editor.colorDecorators": true, "editor.cursorBlinking": "blink", "editor.cursorSmoothCaretAnimation": false, "editor.cursorStyle": "line", "editor.cursorSurroundingLines": 3, "editor.cursorWidth": 0, "editor.disableLayerHinting": true, "editor.disableMonospaceOptimizations": false, "editor.dragAndDrop": true, "editor.emptySelectionClipboard": true, "editor.extraEditorClassName": "", "editor.fontFamily": "'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'", "editor.fontLigatures": false, "editor.fontSize": 14, "editor.fontWeight": "", "editor.formatOnPaste": false, "editor.glyphMargin": true, "editor.hideCursorInOverviewRuler": false, "editor.inlineSuggest.enabled": true, "editor.internalAccessibilitySupport": "auto", "editor.largeFileOptimizations": true, "editor.matchBrackets": true, "editor.minimap.enabled": false, "editor.minimap.maxColumn": 120, "editor.minimap.renderCharacters": true, "editor.minimap.scale": 1, "editor.minimap.showSlider": "mouseover", "editor.minimap.side": "right", "editor.mouseWheelZoom": false, "editor.multiCursorMergeOverlapping": true, "editor.multiCursorModifier": "alt", "editor.parameterHints": true, "editor.quickSuggestions": true, "editor.quickSuggestionsDelay": 10, "editor.readOnly": false, "editor.renderControlCharacters": false, "editor.renderFinalNewline": true, "editor.renderIndentGuides": true, "editor.renderLineHighlight": "line", "editor.renderWhitespace": "none", "editor.revealCursorOnScroll": true, "editor.roundedSelection": true, "editor.rulers": [], "editor.scrollBeyondLastColumn": 5, "editor.scrollBeyondLastLine": true, "editor.selectionClipboard": true, "editor.selectionHighlight": true, "editor.showDeprecated": true, "editor.showFoldingControls": "mouseover", "editor.showIndentGuides": true, "editor.showLineNumbers": true, "editor.showPreviousLine": true, "editor.showUnused": true, "editor.snippetSuggestions": "top", "editor.suggestOnTriggerCharacters": true, "editor.suggestSelection": "recentlyUsed", "editor.tabCompletion": "on", "editor.tabSize": 4, "editor.trimAutoWhitespace": true, "editor.wordSeparators": "~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?", "editor.wordWrap": "off", "editor.wordWrapBreakAfterCharacters": "\t})]?|&,;", "editor.wordWrapBreakBeforeCharacters": "{([+", "editor.wordWrapBreakObtrusiveCharacters": ".", "editor.wordWrapColumn": 80, "editor.wordWrapMinified": true, "editor.wrappingIndent": "same", "editor.folding": true, "editor.hover.enabled": true, "editor.hover.delay": 300, "editor.occurrencesHighlight": true, "editor.renameOnType": false, "editor.mouseWheelZoomDelta": 2, "editor.mouseWheelScrollSensitivity": 1, "editor.mouseWheelSmoothScroll": false, "editor.showDiagnostics": "warnings", "editor.showFoldingControlsAlways": true, "editor.matchBracketsSpace": 0, "editor.autoIndent": "advanced", "editor.useTabStops": true, "files.insertFinalNewline": true, "editor.tabSize": 4, "emmet.triggerExpansionOnTab": true, "emmet.showAbbreviationSuggestions": true, "emmet.html.format.indentation": " ", "emmet.syntaxProfiles": { "javascript": { "attr_quotes": "single" } } }
|