Created
February 3, 2019 20:53
-
-
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
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
{ | |
"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