Next.js Discord

Discord Forum

Auto Format code on save with IDE agnostic functionality

Unanswered
Spectacled bear posted this in #help-forum
Open in Discord
Spectacled bearOP
Is it possible to configure prettier and eslint for auto formatting of the code on saving the file? I'm trying the same, configuring eslint with prettier shows the error but i want to autoformat the staged/updated/modified files automatically.

1 Reply

American black bear
you can enable format on save functionality for both of these tools in vscode:

prettier guide: https://scottsauber.com/2017/06/10/prettier-format-on-save-never-worry-about-formatting-javascript-again/
eslint guide: https://www.aleksandrhovhannisyan.com/blog/eslint-format-on-save/

additionally you can use husky or some similar tool to setup auto formatting before pushing to git e.g. pre commit or pre push hooks