From fcd92c204efafda13b9929985a1bb282c0d39c5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Geuken?= Date: Wed, 6 Jun 2018 09:33:51 +0200 Subject: [PATCH] [dist] Silence hidden-file-or-dir rpmlint check Some of our files are intenionally hidden, eg. the AWS configurations, the sprockets manifest, and many of files of the gems we bundle. Because of that we have a lot of false positives so that we would probably overlook offenses we might want to fix. And given that this offense doesn't cause any harm it's better to silence this check. That makes other, more critical offenses more visible. --- dist/obs-rpmlintrc | 1 + 1 file changed, 1 insertion(+) diff --git a/dist/obs-rpmlintrc b/dist/obs-rpmlintrc index 41f89237a63..c676fc32058 100644 --- a/dist/obs-rpmlintrc +++ b/dist/obs-rpmlintrc @@ -3,3 +3,4 @@ addFilter('non-etc-or-var-file-marked-as-conffile') addFilter('no-manual-page-for-binary') addFilter('non-executable-script') addFilter('no-changelogname-tag') +addFilter('hidden-file-or-dir')