Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prefer array syntax in yaml files #151

Merged
merged 1 commit into from
Aug 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading