Protobuf Package
This rule attempts to enforce that the proto package and the directory structure match, as mandated in AIP-191.
Details
Accordig to the Protobuf Style Guide, the package name must correspond to the directory structure.
This rule currently complains if the package and the directory structure do not correspond.
Examples
Incorrect directory structures and proto packages for this rule:
example/v1
example.library.v1
example/library/v1
example.librarian.v1
Correct directory structures and proto packages for this rule:
example/library/v1
example.library.v1
example/library/v1/types
example.library.v1.types
Disabling
If you need to violate this rule, use a comment at the top of the file. Remember to also include an aip.dev/not-precedent comment explaining why.
// (-- api-linter: core::0191::proto-package=disabled
// aip.dev/not-precedent: We need to do this because reasons. --)
syntax = "proto3";