Dev Setup Tips

Plugins and Extensions:

1. Prettier - Code formatter

2. VSCode Settings

  • Update your VSCode settings: Add or update your settings to format code automatically on save. Add the following to your settings.json file:

{
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  "editor.formatOnSave": true
}

3. Error Lens

  • Install the Error Lens extension

    • Description: Improve highlighting of errors, warnings and other language diagnostics

4. ESLint

  • Install the ESLint extension

    • Description: Integrates ESLint JavaScript into VS Code

Last updated