Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 596 Bytes

README.md

File metadata and controls

35 lines (25 loc) · 596 Bytes

Getting Started

Install yarn

npm install -g yarn

Install dependencies

yarn

Run the app

yarn start

Code formatting

This project uses prettier and ESLint to format code. Install the prettier and ESLint extensions for your editor.

To automatically format the code every time you save, add the following to your settings.json in the .vscode folder:

{
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true
  },
  "editor.formatOnSave": true,
  "editor.defaultFormatter": "esbenp.prettier-vscode"
}