-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
buf-legacy.yaml
41 lines (37 loc) · 1.11 KB
/
buf-legacy.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# buf-legacy.yaml is used so we can apply tighter settings to legacy protos.
# This should be used exclusively to lint legacy protos, all other actions
# should use the default buf.yaml file.
version: v2
modules:
- path: api/proto
deps:
# gogo/protobuf v1.3.2, keep in sync with build.assets/versions.mk.
- buf.build/gogo/protobuf:b03c65ea87cdc3521ede29f62fe3ce239267c1bc
- buf.build/googleapis/googleapis:beb34b4050abfcfff72ff5cc6a28f0afa4043ce0
lint:
use:
- STANDARD
- PACKAGE_NO_IMPORT_CYCLE
# Top-level types require comments.
# TODO(codingllama): Fix messages and enable linters below.
# - COMMENT_ENUM
# - COMMENT_MESSAGE
- COMMENT_RPC
- COMMENT_SERVICE
except:
# MINIMAL
- PACKAGE_DIRECTORY_MATCH
# BASIC
- ENUM_VALUE_UPPER_SNAKE_CASE
- FIELD_LOWER_SNAKE_CASE
- ONEOF_LOWER_SNAKE_CASE
# STANDARD
- ENUM_VALUE_PREFIX
- ENUM_ZERO_VALUE_SUFFIX
- PACKAGE_VERSION_SUFFIX
- RPC_REQUEST_RESPONSE_UNIQUE
- RPC_REQUEST_STANDARD_NAME
- RPC_RESPONSE_STANDARD_NAME
breaking:
use:
- "buf-legacy.yaml should not be used for buf breaking"