From 12b4e922f22082c5ed5fe78a3400d9c45bddd67b Mon Sep 17 00:00:00 2001 From: Katerina Koukiou Date: Thu, 10 Oct 2024 17:40:05 +0200 Subject: [PATCH] Introduce rpmlint.toml file to whitelist some warnings --- rpmlint.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 rpmlint.toml diff --git a/rpmlint.toml b/rpmlint.toml new file mode 100644 index 0000000..f66d79f --- /dev/null +++ b/rpmlint.toml @@ -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) ', +]