Skip to content

Instantly share code, notes, and snippets.

@HugoDF
Created February 3, 2019 20:53
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 HugoDF/eba16b8bb161c9d3453ed46a585596b2 to your computer and use it in GitHub Desktop.
Save HugoDF/eba16b8bb161c9d3453ed46a585596b2 to your computer and use it in GitHub Desktop.
Disable autocomplete and IntelliSense in Visual Studio Code, put this in your `.vscode` folder, researched as part of https://codewithhugo.com/async-js
{
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
},
"editor.parameterHints.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment