Skip to content

Latest commit

 

History

History
59 lines (53 loc) · 1.84 KB

front-end.md

File metadata and controls

59 lines (53 loc) · 1.84 KB

#Visual Studio Code Recommended Extensions for a Front-End Developer ####Quick Guide

  • Click extensions icon on the list(its white one bottom of the list)
  • When menu opened click …(3 dots) right-top of the extensions menu
  • Then Choose ‘Configure Recommended Extensions (Workspace)’

  • Change content of extensions.json file with following snippet and save
{
	"recommendations": [
		"zignd.html-css-class-completion",
		"formulahendry.auto-close-tag",
		"dzannotti.vscode-babel-coloring",
		"michelemelluso.code-beautifier",
		"dbaeumer.vscode-eslint",
		"donjayamanne.githistory",
		"ecmel.vscode-html-css",
		"abusaidm.html-snippets",
		"christian-kohler.path-intellisense",
		"xabikos.ReactSnippets",
		"shinnn.stylelint",
		"robertohuertasm.vscode-icons",
		"xyz.local-history",
		"jpoissonnier.vscode-styled-components",
		"formulahendry.code-runner",
		"eg2.vscode-npm-script",
		"Shan.code-settings-sync",
		"anseki.vscode-color",
		"christian-kohler.npm-intellisense",
		"eamodio.gitlens",
		"waderyan.gitblame",
		"liuji-jim.vue"
	]
}
  • Click again …(3 dots) right-top of the extensions menu
  • And finally choose ‘Show WorkSpace Recommended Extensions’

7. Install packages from the list

Also you can add some keyboard shortcuts:

[
 {
 “key”: “cmd+alt+i”,
 “command”: “editor.action.formatDocument”
 },
 {
 “key”: “cmd+y”,
 “command”: “redo”
 }
]

😎 HAPPY HACKING 🙌🏼