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

Add MLS Service #106

Merged
merged 14 commits into from
Oct 19, 2023
3 changes: 2 additions & 1 deletion .protolint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ lint:

# # The specific linters to remove.
remove:
- RPC_REQUEST_RESPONSE_UNIQUE
# We should probably turn this back on at some point, but pretty annoying RN
- FIELDS_HAVE_COMMENT
# I never want to turn this back on. Enums values should be self-explanatory
Expand All @@ -49,7 +50,7 @@ lint:
# MAX_LINE_LENGTH rule option.
max_line_length:
# Enforces a maximum line length
max_chars: 80
max_chars: 150
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Realized that the new Protobuf formatter doesn't necessarily split lines (for example, for long RPC definitions)

# Specifies the character count for tab characters
tab_chars: 2

Expand Down
1 change: 1 addition & 0 deletions go/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import (

//go:generate compile ../proto/keystore_api/v1/keystore.proto
//go:generate compile ../proto/message_api/v1/message_api.proto
//go:generate compile ../proto/message_api/v3/mls.proto
//go:generate compile ../proto/message_api/v1/authn.proto
//go:generate compile ../proto/message_contents/content.proto
//go:generate compile ../proto/message_contents/conversation_reference.proto
Expand Down
Loading
Loading