Skip to content
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
4 changes: 2 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ij_wrap_on_typing = false
[*.proto]
tab_width = 2
indent_size = 2
indent_style = tab
indent_style = space
insert_final_newline = true
ij_continuation_indent_size = 4
ij_protobuf_keep_blank_lines_in_code = 2
Expand Down Expand Up @@ -72,4 +72,4 @@ ij_prototext_space_after_comma = true
ij_prototext_space_before_colon = false
ij_prototext_space_before_comma = false
ij_prototext_spaces_within_braces = true
ij_prototext_spaces_within_brackets = false
ij_prototext_spaces_within_brackets = false
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,10 @@ PATH := $(GOBIN):$(PATH)

generate:
buf generate
clean:
rm -rf build

regenerate: clean generate

install:
@go install github.com/bufbuild/buf/cmd/buf@latest
11 changes: 8 additions & 3 deletions buf.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
version: v2
modules:
- path: proto
- path: third_party/api
- path: proto
- path: third_party/api
lint:
disallow_comment_ignores: true
disallow_comment_ignores: true
ignore:
# This is a third-party API, so we ignore them for linters.
- third_party/api
- proto/centrifugo/api
- proto/centrifugo/proxy
136 changes: 67 additions & 69 deletions build/http/v1/http.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions build/temporal/api/failure/v1/message.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading