私有配方
名字以 _ 开头的配方和别名将在 just --list 中被忽略:
test: _test-helper
  ./bin/test
_test-helper:
  ./bin/super-secret-test-helper-stuff
$ just --list
Available recipes:
    test
just --summary 亦然:
$ just --summary
test
[private] 属性1.10.0也可用于隐藏配方,而不需要改变名称:
[private]
foo:
[private]
alias b := bar
bar:
$ just --list
Available recipes:
    bar
这对那些只作为其他配方的依赖使用的辅助配方很有用。