Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Katerina Koukiou
12b4e922f2 Introduce rpmlint.toml file to whitelist some warnings 2024-10-10 17:45:27 +02:00

16
rpmlint.toml Normal file
View file

@ -0,0 +1,16 @@
# The purpose of this file is to overwrite some default config
# of rpmlint, which may not fit our project needs / specification
Filters = [
# Discard missing manual pages error
'no-manual-page-for-binary anaconda-cleanup',
'no-manual-page-for-binary anaconda-disable-nm-ibft-plugin',
'no-manual-page-for-binary anaconda-nm-disable-autocons',
'no-manual-page-for-binary instperf',
'no-manual-page-for-binary instperf',
'no-manual-page-for-binary anaconda',
'no-manual-page-for-binary handle-sshpw',
# Discard missing README / documentation for package
'no-documentation',
# Discard spelling errors for project commonly used words
'spelling-error .* en_US (metapackage|kickstarts|iso|eg|lorax) ',
]