@@ -118,7 +118,8 @@ task deploy --silent
118118
119119#### ` --disable-fuzzy `
120120
121- Disable fuzzy matching for task names. When enabled, Task will not suggest similar task names when you mistype a task name.
121+ Disable fuzzy matching for task names. When enabled, Task will not suggest
122+ similar task names when you mistype a task name.
122123
123124``` bash
124125task buidl --disable-fuzzy
@@ -274,7 +275,12 @@ task --list --json
274275
275276#### ` --sort <mode> `
276277
277- Change task listing order. Available modes: ` default ` , ` alphanumeric ` , ` none ` .
278+ Change task listing order. Available modes:
279+
280+ - ` default ` - Sorts tasks alphabetically by name, but ensures that root tasks
281+ (tasks without a namespace) are listed before namespaced tasks.
282+ - ` alphanumeric ` - Sort tasks alphabetically by name.
283+ - ` none ` - No sorting. Uses the order as defined in the Taskfile.
278284
279285``` bash
280286task --list --sort alphanumeric
@@ -314,9 +320,9 @@ task deploy --yes
314320Enable interactive prompts for missing required variables. When a required
315321variable is not provided, Task will prompt for input instead of failing.
316322
317- Task automatically detects non-TTY environments (like CI pipelines) and
318- skips prompts. This flag can also be set in ` .taskrc.yml ` to enable prompts
319- by default.
323+ Task automatically detects non-TTY environments (like CI pipelines) and skips
324+ prompts. This flag can also be set in ` .taskrc.yml ` to enable prompts by
325+ default.
320326
321327``` bash
322328task deploy --interactive
0 commit comments