Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@tenthirtyone
Created December 9, 2019 01:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tenthirtyone/ef32f717683beb22426f559eee976dd6 to your computer and use it in GitHub Desktop.
Save tenthirtyone/ef32f717683beb22426f559eee976dd6 to your computer and use it in GitHub Desktop.
Kill All VS Code Suggestions
{
"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