DEV Community

Krzysztof Platis
Krzysztof Platis

Posted on

My essential tools for authoring Angular code

VSCode extensions

VSCode Settings

Open to VSCode settings.json file (how: open command palette with Cmd+Shift+P then type: Preferences: Open User Settings (JSON)

Image description

and then add the following settings:

  "editor.codeActionsOnSave": {
    "source.organizeImports": true,
    "source.addMissingImports": true
  },
  "editor.formatOnSave": true,
Enter fullscreen mode Exit fullscreen mode

Top comments (0)