Reputation: 519
Run:
prettier --write .
How turn off log output when formatting in prettier?
Upvotes: 10
Views: 3740
Reputation: 537
You can use the following:
prettier --log-level silent
Source: https://prettier.io/docs/en/cli.html#--log-level
Upvotes: 15