Skip to content

Commit ee42868

Browse files
meta: add cargo command aliases
1 parent 6d546ca commit ee42868

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.cargo/config

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[alias]
2+
t = "test-all"
3+
ta = "test-all"
4+
test-all = "test --manifest-path rustfmt-core/Cargo.toml"
5+
6+
test-bin = "test --manifest-path rustfmt-core/rustfmt-bin/Cargo.toml"
7+
tb = "test-bin"
8+
9+
test-config = "test --manifest-path rustfmt-core/rustfmt-config/Cargo.toml"
10+
tc = "test-config"
11+
12+
test-emitter = "test --manifest-path rustfmt-core/rustfmt-emitter/Cargo.toml"
13+
te = "test-emitter"
14+
15+
test-lib = "test --manifest-path rustfmt-core/rustfmt-lib/Cargo.toml"
16+
tl = "test-lib"
17+
18+
i = "install --path . --force --locked"

0 commit comments

Comments
 (0)