Template to quickly start node-js projects.
Pre-Configured ESLint + Prettier
First runs Prettier then ESLint
// 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"
]
},