From 42b4c084c490a481f419e2cd6b1fb22a90ee4c9b Mon Sep 17 00:00:00 2001 From: Martin Junghanns Date: Sun, 15 Jan 2023 11:18:57 +0100 Subject: [PATCH] Put default setting values in backticks (#1512) --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 96b63f1..6add00f 100644 --- a/README.md +++ b/README.md @@ -654,16 +654,16 @@ foo: #### Table of Settings | Name | Value | Default | Description | -| ------------------------- | ------------------ | --------|---------------------------------------------------------------------------------------------- | -| `allow-duplicate-recipes` | boolean | false | Allow recipes appearing later in a `justfile` to override earlier recipes with the same name. | -| `dotenv-load` | boolean | false | Load a `.env` file, if present. | -| `export` | boolean | false | Export all variables as environment variables. | -| `fallback` | boolean | false | Search `justfile` in parent directory if the first recipe on the command line is not found. | -| `ignore-comments` | boolean | false | Ignore recipe lines beginning with `#`. | -| `positional-arguments` | boolean | false | Pass positional arguments. | +| ------------------------- | ------------------ | ------- |---------------------------------------------------------------------------------------------- | +| `allow-duplicate-recipes` | boolean | `false` | Allow recipes appearing later in a `justfile` to override earlier recipes with the same name. | +| `dotenv-load` | boolean | `false` | Load a `.env` file, if present. | +| `export` | boolean | `false` | Export all variables as environment variables. | +| `fallback` | boolean | `false` | Search `justfile` in parent directory if the first recipe on the command line is not found. | +| `ignore-comments` | boolean | `false` | Ignore recipe lines beginning with `#`. | +| `positional-arguments` | boolean | `false` | Pass positional arguments. | | `shell` | `[COMMAND, ARGS…]` | - | Set the command used to invoke recipes and evaluate backticks. | | `tempdir` | string | - | Create temporary directories in `tempdir` instead of the system default temporary directory. | -| `windows-powershell` | boolean | false | Use PowerShell on Windows as default shell. (Deprecated. Use `windows-shell` instead. | +| `windows-powershell` | boolean | `false` | Use PowerShell on Windows as default shell. (Deprecated. Use `windows-shell` instead. | | `windows-shell` | `[COMMAND, ARGS…]` | - | Set the command used to invoke recipes and evaluate backticks. | Boolean settings can be written as: