11 lines
616 B
Text
11 lines
616 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$")
|
|
# Update LGPLv2.1 license text and notices for remote-only FSF
|
|
# https://github.com/chardet/chardet/pull/307
|
|
addFilter(r" incorrect-fsf-address ")
|