github.com/yoheimuta/protolint@v0.49.8-0.20240515023657-4ecaebb7575d/_testdata/rules/proto3GroupsAvoid/disable_next.proto (about) 1 syntax = "proto3"; 2 3 message SearchResponse { 4 // protolint:disable:next PROTO3_GROUPS_AVOID 5 repeated group Results = 1 { 6 string url = 2; 7 optional string title = 3; 8 repeated string snippets = 4; 9 } 10 }