chore: Always run prettier with --write in lint:all

This commit is contained in:
mkorwel
2025-09-25 20:57:29 -07:00
parent 20eea1c2a2
commit 6ef2a1da16
3 changed files with 2 additions and 7 deletions

View File

@@ -164,7 +164,7 @@ export function runYamllint() {
export function runPrettier() {
console.log('\nRunning Prettier...');
if (!runCommand('prettier --check .')) {
if (!runCommand('prettier --write .')) {
process.exit(1);
}
}