8 lines
469 B
Text
8 lines
469 B
Text
# Not a real spelling error:
|
|
addFilter(r" spelling-error \('([Pp]rober)s?',")
|
|
# This Source cannot be a URL because we must filter out certain files.
|
|
addFilter(r" invalid-url Source[0-9]+: chardet-.*-filtered\.tar\.zst")
|
|
# Bogus; it is a perfectly fine zstandard file.
|
|
addFilter(r" inconsistent-file-extension chardet-.*-filtered\.tar\.zst$")
|
|
# The -doc subpackage was removed without an equivalent replacement.
|
|
addFilter(r" obsolete-not-provided python-chardet-doc$")
|