just icon indicating copy to clipboard operation
just copied to clipboard

🤖 Just a command runner

Results 291 just issues
Sort by recently updated
recently updated
newest added

Please ref the discussion I opened here: https://github.com/github-linguist/linguist/discussions/6401#discussion-5157240. There is an issue with the `just` syntax for multi-line strings that I am hoping can be fixed, as it makes several...

the fmt subcommand is not checking the indentation correctly. It seems to think that indentation should be 4 spaces. The tests in tests/fmt.rs all use 4 spaces e.g. lines 33...

The readme can be converted to a man page: http://asciidoctor.org/docs/user-manual/#man-pages Would be nice to get command examples directly from clap. Also remember to include the grammar.

documentation

I have these content in my justfile: ```just #!/usr/bin/env -S just --working-directory . --justfile import 'lib.just' import 'config.just' import 'template_var.just' ``` I can run the file normally. However, when I...

like `set dotenv-path "~/.mpm.config"`

Given the following example Justfile: ```just version := "0.2.7" foo1 := / "tmp" foo2_3 := "a/" foo2_bar := "a/" tmpdir := `mktemp` project_tardir := tmpdir / "awesomesauce-" + version prj_tarball...

It would be useful to have variable substitution in a task doc comment: ```just # Run the primary CI test (PostgreSQL {{ PROD_POSTGRESQL }}) ci-test-primary: createdb test dropdb ``` This...

I'm using module feature and I think it's great. One limitation that I've encountered is that modules cannot be aliased but it can be really useful in some scenarios. ```...

When running just recipes in CI, it might be good to print a description of each recipe before running it - by using some new optional flag, or maybe as...

In parent just file: `main:` In mod a: `do: main` Is it possible to support invoking dependent recipes from module and reverse?