Settings for an easy going, enjoyable development experience when working with node.js in Visual Studio Code.
Paste the following into your user settings: settings.json. Then customize font-size, etc to your preference.
This can be done within the VSCode editor - detailed instructions can be found here.
- Auto Rename Tag: automatically rename the paired tag for html tags
- javascript console utils: console log whatever is highlighted with ctrl-shift-l
- Bracket Pair Colorizer: colours your brackets, it's awesome
- Cobalt2 Theme Official: looks nice
- Docker: don't need this unless you know what docker is
- EditorConfig for VScode: really awesome, you can control file formatting with a .editorconfig file for pretty much any language
- ESLint: the best and most prolific js formatter
- Gitlens - Git supercharged: fantastic tool for any project tracked with git
- Material Icon Theme: great icons based off your folder names in the vscode editor
- Prettier - Code formatter: automated code formatting, minimal setup required
- Version Lens: great for tracking npm packages and updated
- Vetur: fantastic tool for anyone working with Vue.js
Add the following files to the root of your project with the relevant extension enabled to make life easier.
.editorconfig- File formatting.eslintrc.js- Javascript linting settings.eslintignore- Further javascript formatting settings
Visit Fira Code and follow the installation steps to enable ligatures.
If you are having troubles with git and logging in, see this link.