* consolidate proto files into single directory, turn on PACKAGE_DIRECTORY_MATCH linting * add third_party root for third party proto files * move ibc proto files to top level folder, rename .proto files to types.proto as before * update protocgen script, and run code generation * move vesting proto definition to cosmos namespace, rename from types.proto in alignment with buf.build naming conventions * update Makefile so proto dependencies are set with new structure when updated * add comment for sed usage in makefile * remove unused aliases of proto generated types * add settings.json instructions to contributing.md for including protobuf paths Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com> Co-authored-by: Aaron Craelius <aaron@regen.network>
28 lines
413 B
YAML
28 lines
413 B
YAML
build:
|
|
roots:
|
|
- proto
|
|
- third_party/proto
|
|
excludes:
|
|
- third_party/proto/google
|
|
lint:
|
|
use:
|
|
- DEFAULT
|
|
- COMMENTS
|
|
- FILE_LOWER_SNAKE_CASE
|
|
except:
|
|
- UNARY_RPC
|
|
- COMMENT_FIELD
|
|
- SERVICE_SUFFIX
|
|
- PACKAGE_VERSION_SUFFIX
|
|
ignore:
|
|
- tendermint
|
|
- gogoproto
|
|
- cosmos_proto
|
|
breaking:
|
|
use:
|
|
- FILE
|
|
ignore:
|
|
- tendermint
|
|
- gogoproto
|
|
- cosmos_proto
|