File tree 4 files changed +26
-0
lines changed
4 files changed +26
-0
lines changed Original file line number Diff line number Diff line change
1
+ import ' build-aux/que.just'
2
+ import ' build-aux/que_rust_boilerplate.just'
3
+
4
+ [group (' test' )]
5
+ test :
6
+ make test
7
+
8
+ [group (' lint' )]
9
+ lint : lint-rust
10
+ echo from parent lint
11
+
12
+ # vim: set ft=just
Original file line number Diff line number Diff line change
1
+ set allow-duplicate-variables
2
+ set shell := [" zsh" , " -cu" ]
3
+ lints := " foo"
Original file line number Diff line number Diff line change
1
+ [group (' rust' )]
2
+ [group (' lint' )]
3
+ lint-rust : rustfmt
4
+ echo from rust lint
5
+
6
+ lints := lints + " lint-rust"
7
+
8
+ [group (' rust' )]
9
+ rustfmt :
10
+
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ QUE_DIST_CHECKSUMS
14
14
15
15
AM_COND_IF([ DEVELOPER_MODE] , [
16
16
QUE_PROGVAR([ gitcliff] , [ git-cliff] )
17
+ QUE_PROGVAR([ just] , [ just] )
17
18
QUE_PROGVAR([ typos] , [ typos] )
18
19
] )
19
20
You can’t perform that action at this time.
0 commit comments