Skip to content

Commit 9134fe0

Browse files
committed
chore(just): Change recipes to echo out
1 parent 400cada commit 9134fe0

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

justfile

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,58 +5,58 @@
55
alias lint := clippy
66

77
# Run default recipe
8-
@_default:
8+
_default:
99
just -l
1010

1111
# Build a package
12-
@build:
12+
build:
1313
cargo build
1414

1515
# Remove generated artifacts
16-
@clean:
16+
clean:
1717
cargo clean
1818

1919
# Check a package
20-
@check:
20+
check:
2121
cargo check
2222

2323
# Run tests
24-
@test:
24+
test:
2525
cargo test
2626

2727
# Run benchmarks
28-
@bench:
28+
bench:
2929
cargo +nightly bench
3030

3131
# Run the formatter
32-
@fmt:
32+
fmt:
3333
cargo fmt
3434

3535
# Run the formatter with options
36-
@fmt-with-options:
36+
fmt-with-options:
3737
cargo +nightly fmt
3838

3939
# Run the linter
40-
@clippy:
40+
clippy:
4141
cargo clippy -- -D warnings
4242

4343
# Apply lint suggestions
44-
@clippy-fix:
44+
clippy-fix:
4545
cargo +nightly clippy --fix --allow-dirty --allow-staged -- -D warnings
4646

4747
# Build the package documentation
48-
@doc $RUSTDOCFLAGS="--cfg docsrs":
48+
doc $RUSTDOCFLAGS="--cfg docsrs":
4949
cargo +nightly doc --all-features
5050

5151
# Run the linter for GitHub Actions workflow files
52-
@lint-github-actions:
52+
lint-github-actions:
5353
actionlint -verbose
5454

5555
# Run the formatter for the README
56-
@fmt-readme:
56+
fmt-readme:
5757
npx prettier -w README.md
5858

5959
# Increment the version
60-
@bump part:
60+
bump part:
6161
bump-my-version bump {{ part }}
6262
cargo set-version --bump {{ part }}

0 commit comments

Comments
 (0)