Skip to content

Commit c5f1038

Browse files
authored
Merge pull request #155 from rabbitmq/make-erlc_opts-values-mergable
Allow gazelle to merge the values attr of erlc_opts rules
2 parents 678b7b6 + 94c7d12 commit c5f1038

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

gazelle/kinds.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,10 @@ func (l *erlangLang) Kinds() map[string]rule.KindInfo {
8585
"visibility": true,
8686
},
8787
SubstituteAttrs: map[string]bool{},
88-
MergeableAttrs: map[string]bool{},
89-
ResolveAttrs: map[string]bool{},
88+
MergeableAttrs: map[string]bool{
89+
"values": true,
90+
},
91+
ResolveAttrs: map[string]bool{},
9092
},
9193
erlangBytecodeKind: {
9294
MatchAttrs: []string{

0 commit comments

Comments
 (0)