Bumps [github.com/TwiN/deepmerge](https://github.com/TwiN/deepmerge) from 0.1.0 to 0.2.0. - [Release notes](https://github.com/TwiN/deepmerge/releases) - [Commits](https://github.com/TwiN/deepmerge/compare/v0.1.0...v0.2.0) --- updated-dependencies: - dependency-name: github.com/TwiN/deepmerge dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
11 lines
341 B
Go
11 lines
341 B
Go
package deepmerge
|
|
|
|
type Config struct {
|
|
// PreventMultipleDefinitionsOfKeysWithPrimitiveValue causes the return of an error if dst and src define
|
|
// the same key and if said key has a value with a primitive type
|
|
// This does not apply to slices or maps.
|
|
//
|
|
// Defaults to true
|
|
PreventMultipleDefinitionsOfKeysWithPrimitiveValue bool
|
|
}
|