2021-02-02 13:20:44 +00:00
|
|
|
# These are not real spelling errors...
|
2021-04-07 12:18:34 +00:00
|
|
|
addFilter(r' spelling-error .*[ \(]en_US\)? (microservices|auth|gRPC|'
|
2021-06-10 15:00:02 +00:00
|
|
|
r'channelz|proto(buf)?|unary|rpc|grpcio|csds|localhost|'
|
|
|
|
r'grpc(debug)?|servicers|[Dx]DS|programatically) ')
|
2021-02-02 13:20:44 +00:00
|
|
|
# Maybe some of these are supposed to be CRNL-terminated:
|
2021-04-07 12:18:34 +00:00
|
|
|
addFilter(r' wrong-file-end-of-line-encoding '
|
|
|
|
r'/usr/share/doc/grpc/examples/csharp/')
|
2021-02-02 13:20:44 +00:00
|
|
|
# We generally follow upstream package metadata for these:
|
|
|
|
addFilter(r' description-shorter-than-summary')
|
|
|
|
# Many subpackages do not have their own documentation!
|
|
|
|
addFilter(r' no-documentation')
|
|
|
|
# We believe we have patched all calls to SSL_CTX_set_cipher_list with
|
|
|
|
# hard-coded values to use "PROFILE=SYSTEM" instead, thereby complying with the
|
|
|
|
# system policy.
|
|
|
|
addFilter(r' crypto-policy-non-compliance-openssl .* SSL_CTX_set_cipher_list')
|
|
|
|
# These will not dangle after the ca-certificates dependency is installed:
|
|
|
|
addFilter(r' dangling-relative-symlink .*\.pem$')
|
2021-03-22 22:34:21 +00:00
|
|
|
# We do not really have a way to work around this. It should be okay in
|
|
|
|
# practice. Hopefully the grpc_cli executable will become disentangled from the
|
|
|
|
# test libraries upstream and this will go away.
|
|
|
|
addFilter(r' shared-lib-without-dependency-information '
|
|
|
|
r'/.*libgrpc.._error_details\.so')
|
|
|
|
# There is nothing to document for these; they do not have --help output and
|
|
|
|
# are intended for program use.
|
|
|
|
addFilter(r' no-manual-page-for-binary grpc_.*_plugin$')
|
|
|
|
# There is really no version information available.
|
|
|
|
addFilter(r' unversioned-explicit-provides bundled\(upb\)')
|
2021-06-10 15:00:02 +00:00
|
|
|
# We use rpmautospec, which rpmlint may not yet understand
|
|
|
|
addFilter(r' Possible unexpanded macro in: .*%autorelease$')
|
|
|
|
addFilter(r' %changelog entries must start with \*$')
|
|
|
|
# This really does make sense:
|
|
|
|
addFilter(r' summary-not-capitalized .*xDS$')
|