Use `--silent` in npm script prettier-check
Created by: mrnugget
Without --silent
the output of the command is incredibly noisy on CI:
And since it's a "check" command to make sure that everything's been formatted properly, we only want to know:
- did it succeed or fail?
- if it failed, which fails were not formatted?
With --silent
we get all of that and can more easily spot which files are wrongly formatted.
Before:
After: