Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 644 Bytes

setup-editor.md

File metadata and controls

32 lines (22 loc) · 644 Bytes
id title
setup-editor
Setup your editor

For convenience, we assume you will use VSCode. If you are using WebStorm and Atom, you are likely to find some extensions that provide similar functionalities.

Recommeneded Extensions

ESLint

Install ESLint in VSCode

Add these lines to your VSCode Settings:

  // Other settings ...
  "eslint.alwaysShowStatus": true,
  "eslint.autoFixOnSave": true,
  "eslint.enable": true,
  "eslint.packageManager": "yarn"

Bracket Pair Colorizer

Highlights matching brackets to make code easier to read.

npm

This will be useful later when looking at package.json files.