Created
December 9, 2019 01:32
-
-
Save tenthirtyone/ef32f717683beb22426f559eee976dd6 to your computer and use it in GitHub Desktop.
Kill All VS Code Suggestions
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
{ | |
"eslint.autoFixOnSave": true, | |
"editor.parameterHints.enabled": false, | |
"editor.suggest.snippetsPreventQuickSuggestions": false, | |
"php.suggest.basic": false, | |
"editor.suggest.filterGraceful": false, | |
"javascript.suggest.paths": false, | |
"javascript.suggest.completeJSDocs": false, | |
"workbench.tips.enabled": false, | |
"javascript.suggest.autoImports": false, | |
"javascript.suggest.names": false, | |
"javascript.suggest.enabled": false, | |
"typescript.suggest.completeJSDocs": false, | |
"typescript.suggest.autoImports": false, | |
"typescript.suggest.enabled": false, | |
"typescript.suggest.paths": false, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"editor.detectIndentation": false, | |
"editor.tabSize": 2, | |
"diffEditor.renderSideBySide": false, | |
"editor.formatOnSave": true, | |
"window.zoomLevel": 0, | |
"editor.wordWrap": "off", | |
"editor.wrappingIndent": "none", | |
"editor.quickSuggestions": false, | |
"editor.quickSuggestionsDelay": 90, | |
"editor.parameterHints": false, | |
"editor.autoClosingBrackets": false, | |
"editor.formatOnType": false, | |
"editor.suggestOnTriggerCharacters": false, | |
"editor.acceptSuggestionOnEnter": "off", | |
"html.autoClosingTags": false, | |
"html.format.enable": false, | |
"html.validate.scripts": false, | |
"html.suggest.html5": false, | |
"html.format.extraLiners": "" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment