Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 832 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 832 Bytes

node-js-template

Template to quickly start node-js projects.

Pre-Configured ESLint + Prettier

First runs Prettier then ESLint

Setup

VS Code Settings

  // formatting
  "editor.formatOnSave": true,
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  "[javascript]": {
    "editor.formatOnSave": false,
    "editor.defaultFormatter": "esbenp.prettier-vscode",
    "editor.codeActionsOnSave": [
      "source.formatDocument",
      "source.organizeImports",
      "source.fixAll.eslint"
    ]
  },

VS Code Plugins