Lint lints all proto files.
(ctx context.Context)
| 290 | |
| 291 | // Lint lints all proto files. |
| 292 | func (p Proto) Lint(ctx context.Context) error { |
| 293 | return runGoTool(append([]string{bufCLI, "lint"}, "api")...) |
| 294 | } |
| 295 | |
| 296 | // Clean removes generated protos. |
| 297 | func (p Proto) Clean(ctx context.Context) { |
nothing calls this directly
no test coverage detected