From 4645fd290d0ff0de4415c6f05ede9a0fc0eaea54 Mon Sep 17 00:00:00 2001 From: LandonTClipp Date: Sun, 16 Apr 2023 21:34:51 -0500 Subject: [PATCH] link the config section to the features section for `recursive` --- docs/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration.md b/docs/configuration.md index 6b2127ab..6529c07a 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -82,7 +82,7 @@ Parameter Descriptions | `log-level` | :fontawesome-solid-x: | `#!yaml "info"` | Set the level of the logger | | [`packages`](/mockery/features/#packages-configuration) | :fontawesome-solid-x: | `#!yaml null` | A dictionary containing configuration describing the packages and interfaces to generate mocks for. | | `print` | :fontawesome-solid-x: | `#!yaml false` | Use `print: True` to have the resulting code printed out instead of written to disk. | - | `recursive` | :fontawesome-solid-x: | `#!yaml false` | When set to `true` on a particular package, mockery will recursively search for all sub-packages and inject those packages into the config map. Use the `showconfig` command to see the sub-packages mockery injects. The config outputted by `showconfig` is semantically equivalent to whatever is specified in your yaml file. All sub-packages receive the same configuration as the parent package. | + | [`recursive`](/mockery/features/#recursive-package-discovery) | :fontawesome-solid-x: | `#!yaml false` | When set to `true` on a particular package, mockery will recursively search for all sub-packages and inject those packages into the config map. | | [`with-expecter`](/mockery/features/#expecter-structs) | :fontawesome-solid-x: | `#!yaml true` | Use `with-expecter: True` to generate `EXPECT()` methods for your mocks. This is the preferred way to setup your mocks. | | [`replace-type`](/mockery/features/#replace-types) | :fontawesome-solid-x: | `#!yaml null` | Replaces aliases, packages and/or types during generation.|