Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 909 Bytes

setup-tips.md

File metadata and controls

25 lines (19 loc) · 909 Bytes

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