DEV Community

najibismail93
najibismail93

Posted on

Step to get started

  1. Install Git, Node , VS Code
  2. Install plugin from VS Code - Prettier
  3. VS Code configuration - Setting -setting.jason

Add line
add this line:-

{
    "[javascript]": {
        "editor.formatOnSave": true,
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "[javascriptreact]": {
        "editor.formatOnSave": true,
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    }
}

Enter fullscreen mode Exit fullscreen mode
  1. VS Code Terminal - yarn install 5.

Top comments (0)