Skip to content

Commit

Permalink
fix lint error in visibility proto
Browse files Browse the repository at this point in the history
  • Loading branch information
erademacher committed Sep 8, 2022
1 parent e6d1133 commit 50e22a9
Show file tree
Hide file tree
Showing 4 changed files with 83 additions and 82 deletions.
155 changes: 78 additions & 77 deletions examples/internal/proto/examplepb/visibility_rule_echo_service.pb.go

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

Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ message VisibilityRuleSubMessageInPreviewMethod {
// but is only included in a method marked as "PREVIEW", so it will only
// appear if `visibility_restriction_selectors` include "PREVIEW".
enum VisibilityRuleEnumInPreviewMethod {
VISIBILITY_PREVIEW_ENUM_UNSPECIFIED = 0;
VISIBILITY_RULE_ENUM_IN_PREVIEW_METHOD_UNSPECIFIED = 0;
}

// VisibilityRuleEchoService service responds to incoming echo requests.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -724,9 +724,9 @@
"examplepbVisibilityRuleEnumInPreviewMethod": {
"type": "string",
"enum": [
"VISIBILITY_PREVIEW_ENUM_UNSPECIFIED"
"VISIBILITY_RULE_ENUM_IN_PREVIEW_METHOD_UNSPECIFIED"
],
"default": "VISIBILITY_PREVIEW_ENUM_UNSPECIFIED",
"default": "VISIBILITY_RULE_ENUM_IN_PREVIEW_METHOD_UNSPECIFIED",
"description": "EnumInPreviewMethod doesn't define its own visibility restrictions,\nbut is only included in a method marked as \"PREVIEW\", so it will only\nappear if `visibility_restriction_selectors` include \"PREVIEW\"."
},
"examplepbVisibilityRuleMessageInPreviewMethod": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -392,9 +392,9 @@
"examplepbVisibilityRuleEnumInPreviewMethod": {
"type": "string",
"enum": [
"VISIBILITY_PREVIEW_ENUM_UNSPECIFIED"
"VISIBILITY_RULE_ENUM_IN_PREVIEW_METHOD_UNSPECIFIED"
],
"default": "VISIBILITY_PREVIEW_ENUM_UNSPECIFIED",
"default": "VISIBILITY_RULE_ENUM_IN_PREVIEW_METHOD_UNSPECIFIED",
"description": "EnumInPreviewMethod doesn't define its own visibility restrictions,\nbut is only included in a method marked as \"PREVIEW\", so it will only\nappear if `visibility_restriction_selectors` include \"PREVIEW\"."
},
"examplepbVisibilityRuleMessageInPreviewMethod": {
Expand Down

0 comments on commit 50e22a9

Please sign in to comment.