Skip to content

Instantly share code, notes, and snippets.

@pratikdevdas
Last active June 27, 2022 18:29
Show Gist options
  • Save pratikdevdas/3bb2fb1f82396449f7abed0de102b952 to your computer and use it in GitHub Desktop.
Save pratikdevdas/3bb2fb1f82396449f7abed0de102b952 to your computer and use it in GitHub Desktop.
Onsave formatting for react which uses prettier and es-lint both
{
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.triggerExpansionOnTab": true,
"editor.codeActionsOnSave": {
//eslint-runs-automatically-on-save
"source.fixAll.eslint": true
},
"eslint.validate": [
"javascript"
],
//prettier-runs-automatically-on-save
//remove-for-projects-which-arent-using-prettier
"editor.formatOnSave": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment