Skip to content

Instantly share code, notes, and snippets.

@DEVfancybear
Last active December 8, 2020 04: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 DEVfancybear/0ec45d4c9f1836f78dd5206e79d3b8e3 to your computer and use it in GitHub Desktop.
Save DEVfancybear/0ec45d4c9f1836f78dd5206e79d3b8e3 to your computer and use it in GitHub Desktop.
// VSCode IntelliSense
// Controls if quick suggestions should show up while typing
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
},
// Controls whether suggestions should be accepted on commit characters. For example, in JavaScript, the semi-colon (`;`) can be a commit character that accepts a suggestion and types that character.
"editor.acceptSuggestionOnCommitCharacter": true,
// Controls if suggestions should be accepted on 'Enter' - in addition to 'Tab'. Helps to avoid ambiguity between inserting new lines or accepting suggestions. The value 'smart' means only accept a suggestion with Enter when it makes a textual change
"editor.acceptSuggestionOnEnter": "on",
// Controls if suggestions should automatically show up when typing trigger characters
"editor.suggestOnTriggerCharacters": true,
// Enable word based suggestions
"editor.wordBasedSuggestions": true,
// Enable parameter hints
"editor.parameterHints.enabled": true
// Eslint + Prettier
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
// HTML to CSS autocompletion
"html-to-css-autocompletion.triggerCharacters": true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment