Last active
December 8, 2020 04:32
-
-
Save DEVfancybear/0ec45d4c9f1836f78dd5206e79d3b8e3 to your computer and use it in GitHub Desktop.
This file contains 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
// 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