prettier/prettier: Prettier is an opinionated code formatter.
Briefly

Prettier is an opinionated code formatter that enforces a consistent style by re-printing your code with its own rules, considering factors like maximum line length.
Using Prettier allows developers to format their code automatically on-save, in pre-commit hooks, or CI environments, which saves time and prevents nit-picky comments during code reviews.
Prettier wraps code for readability, avoiding long single lines, demonstrated in multi-parameter function calls to ensure maintainability and clarity.
Read at github.com
[
|
]