Posts

Showing posts from April, 2020

Visual Studio Code Extensions for UI development

Visual Studio Code is the best IDE for any front end development. During the code development we do lots of things other than coding. Things like formatting, making builds and much more. To help the developers speed up there are lots of extensions available for Visual Studio Code. I have listed down extensions which I believe will definitely help during front end development: Beautify It is a very nice extension for formatting HTML and CSS. You not don't need to worry about the indentation, alignment of HTML and CSS files. Just select the piece of code you want to format, right click and use "Format Selection" option. It will format the code for you. JSHint Good for any JavaScript development. It provides following features: - Highlight errors based on JavaScript rules - Highlights if any code is not following best practice. It helps to avoid the bugs which can come in future due to bad code practice. - Highlights unnecessary variable declarations. Highlights ...