Skip to content

Commit

Permalink
Prefer array syntax in yaml files (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
rebello95 authored Aug 11, 2023
1 parent 2ec892f commit da60f38
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Examples/buf.gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ plugins:
opt: Visibility=Internal
out: ./ElizaSharedSources/GeneratedSources
- name: connect-swift
opt: >
GenerateServiceMetadata=false,
Visibility=Internal
opt:
- GenerateServiceMetadata=false
- Visibility=Internal
out: ./ElizaSharedSources/GeneratedSources
path: ../.tmp/bin/protoc-gen-connect-swift
16 changes: 8 additions & 8 deletions Tests/ConnectLibraryTests/buf.gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ plugins:
opt: Visibility=Internal
out: ./Generated
- name: connect-swift
opt: >
GenerateAsyncMethods=true,
GenerateCallbackMethods=true,
Visibility=Internal
opt:
- GenerateAsyncMethods=true
- GenerateCallbackMethods=true
- Visibility=Internal
out: ./Generated
path: ../../.tmp/bin/protoc-gen-connect-swift
- name: connect-swift-mocks
opt: >
GenerateAsyncMethods=true,
GenerateCallbackMethods=true,
Visibility=Internal
opt:
- GenerateAsyncMethods=true
- GenerateCallbackMethods=true
- Visibility=Internal
out: ./Generated
path: ../../.tmp/bin/protoc-gen-connect-swift-mocks

0 comments on commit da60f38

Please sign in to comment.