From 558cc1cab1ccc08630c06423abeddedd4295b928 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sun, 5 Nov 2023 08:56:31 +0000 Subject: [PATCH] chore: ensure yaml is formatted --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 7e841dd..7251d8b 100644 --- a/justfile +++ b/justfile @@ -33,13 +33,13 @@ doc-watch: # Check project formatting. check: just --unstable --fmt --check - npx -y prettier --check '**/*.md' + npx -y prettier --check '**/*.{md,yml}' taplo lint cargo +nightly fmt -- --check # Format project. fmt: just --unstable --fmt - npx -y prettier --write '**/*.md' + npx -y prettier --write '**/*.{md,yml}' taplo format cargo +nightly fmt