We like the quote “Truth can only be found in one place: the code”. Today we are going to discuss the Visual Studio Code, which extensions are one of the best. Meet the Vital Visual Studio Code settings and extensions.
- Prettier Code Formatter
this allows to get rid of language-specific code formatters. - npm
to ensure thatpackage.json
is up to date and not bloated with modules that I am not using. - npm Intellisense
this extension indexes the package.json and allows to autocompleteimport
statements when requiring modules. - Bracket Pair Colorizer
This extension color codes all of brackets, allowing to quickly see where each code block starts and ends. - React Refactor
It lets you select some JSX and refactor it out into a custom React Class, function, or hook.
For more tips and tricks about Visual Studio Code click here.
And another cool thing – VSCode GraphQL extension! Features include intelligent autocompletion, jump-to-definition, syntax highlighting, query validation & a lot more. Great, isn’t it?