Skip to content

Commit

Permalink
chore: ensure yaml is formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Nov 5, 2023
1 parent 9b50652 commit 558cc1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 558cc1c

Please sign in to comment.