This repository has been archived by the owner on Jul 16, 2021. It is now read-only.
Permalink
Cannot retrieve contributors at this time
50 lines (44 sloc)
1.36 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
keytransparency/prototool.yaml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Paths to exclude when searching for Protobuf files. | |
#excludes: | |
#- path/to/a | |
#- path/to/b/file.proto | |
# Protoc directives. | |
protoc: | |
# The Protobuf version to use from https://github.com/protocolbuffers/protobuf/releases. | |
# You probably want to set this to make your builds completely reproducible. | |
version: 3.6.1 | |
# Additional paths to include with -I to protoc. | |
# By default, the directory of the config file is included, | |
# or the current directory if there is no config file. | |
includes: | |
- core/api | |
- ../trillian/ | |
- ../../googleapis/googleapis/ | |
- ../tink/proto | |
# Lint directives. | |
lint: | |
# Linter files to ignore. | |
# ignores: | |
# - id: RPC_NAMES_CAMEL_CASE | |
# files: | |
# - path/to/foo.proto | |
# - path/to/bar.proto | |
# - id: SYNTAX_PROTO3 | |
# files: | |
# - path/to/foo.proto | |
# Linter rules. | |
# Run prototool list-all-linters to see all available linters. | |
rules: | |
# Determines whether or not to include the default set of linters. | |
# no_default: true | |
# The specific linters to add. | |
# add: | |
# The specific linters to remove. | |
remove: | |
- FILE_OPTIONS_REQUIRE_JAVA_PACKAGE | |
- FILE_OPTIONS_REQUIRE_JAVA_MULTIPLE_FILES | |
- FILE_OPTIONS_JAVA_MULTIPLE_FILES_SAME_IN_DIR | |
- FILE_OPTIONS_REQUIRE_JAVA_OUTER_CLASSNAME | |
- FILE_OPTIONS_EQUAL_GO_PACKAGE_PB_SUFFIX | |
- REQUEST_RESPONSE_TYPES_IN_SAME_FILE | |
- REQUEST_RESPONSE_TYPES_UNIQUE |