Skip to content

Commit

Permalink
chore: fix fmt recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed May 1, 2024
1 parent 1eccb73 commit b391ad8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .codecov.yml
Expand Up @@ -10,6 +10,6 @@ coverage:
threshold: 100% # make CI green

ignore:
- '**/tests'
- '**/benches'
- '**/examples'
- "**/tests"
- "**/benches"
- "**/examples"
2 changes: 1 addition & 1 deletion .prettierrc.yml
@@ -1,5 +1,5 @@
overrides:
- files: '*.md'
- files: "*.md"
options:
printWidth: 9999
proseWrap: never
4 changes: 2 additions & 2 deletions justfile
Expand Up @@ -52,13 +52,13 @@ doc-watch:
# Check project
check:
just --unstable --fmt --check
prettier --check $(fd --hidden --extension=md --extension=yml)
prettier --check $(fd --type=file --hidden --extension=md --extension=yml)
taplo lint $(fd --hidden --extension=toml)
cargo +nightly fmt -- --check

# Format project
fmt:
just --unstable --fmt
prettier --write $(fd --hidden --extension=md --extension=yml)
prettier --write $(fd --type=file --hidden --extension=md --extension=yml)
taplo format $(fd --hidden --extension=toml)
cargo +nightly fmt

0 comments on commit b391ad8

Please sign in to comment.