Last active
April 16, 2020 10:22
-
-
Save drcharris/8edb23e563a7c1d8cb1dd41977158107 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"breadcrumbs.symbolSortOrder": "name", | |
"debug.onTaskErrors": "showErrors", | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"editor.autoClosingQuotes": "never", | |
"editor.autoIndent": "full", | |
"editor.find.autoFindInSelection": "always", | |
"editor.fontFamily": "Hack", | |
"editor.fontSize": 12, | |
"editor.hover.delay": 600, | |
"editor.insertSpaces": false, | |
"editor.lineHeight": 13, | |
"editor.links": false, | |
"editor.minimap.enabled": false, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.quickSuggestions": { | |
"comments": false, | |
"other": false, | |
"strings": false | |
}, | |
"editor.quickSuggestionsDelay": 100, | |
"editor.showFoldingControls": "always", | |
"editor.snippetSuggestions": "top", | |
"editor.stablePeek": false, | |
"editor.tabCompletion": "onlySnippets", | |
"editor.tabSize": 2, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": "markup.inline.raw.string.markdown", | |
"settings": { | |
"foreground": "#4040ff" | |
} | |
} | |
] | |
}, | |
"editor.wordWrap": "on", | |
"editor.wrappingIndent": "indent", | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"eslint.packageManager": "yarn", | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"typescript", | |
"typescriptreact" | |
], | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.openEditors.visible": 50, | |
"files.autoSave": "afterDelay", | |
"files.autoSaveDelay": 10000, | |
"files.exclude": { | |
"**/.cache": true | |
}, | |
"git.enableSmartCommit": true, | |
"git.showPushSuccessNotification": true, | |
"gitlens.blame.highlight.locations": [ | |
"line", | |
"overview", | |
"gutter" | |
], | |
"gitlens.blame.toggleMode": "window", | |
"gitlens.codeLens.enabled": false, | |
"gitlens.codeLens.scopes": [ | |
"containers", | |
"document" | |
], | |
"gitlens.currentLine.enabled": false, | |
"gitlens.hovers.currentLine.over": "line", | |
"gitlens.views.fileHistory.location": "explorer", | |
"javascript.preferences.quoteStyle": "single", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"markdown.preview.breaks": true, | |
"scm.diffDecorations": "none", | |
"search.exclude": { | |
"**/bower_components": true, | |
"**/node_modules": true, | |
"build/**": true | |
}, | |
"telemetry.enableTelemetry": false, | |
"typescript.format.insertSpaceAfterSemicolonInForStatements": true, | |
"typescript.preferences.quoteStyle": "single", | |
"typescript.tsserver.experimental.enableProjectDiagnostics": false, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"window.nativeTabs": true, | |
"window.openFilesInNewWindow": "off", | |
"workbench.colorTheme": "Default Light+", | |
"workbench.editor.revealIfOpen": true, | |
"workbench.editor.showTabs": true, | |
"workbench.tree.indent": 16 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment