From f20ec7d762af68270d89246dccc8222fb608f358 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 9 Jan 2024 23:13:16 +0100 Subject: [PATCH] rpminspect: Disable the unicode inspection rpminspect reported: A forbidden code point, 0x202E, was found in the idna-3.9/tests/IdnaTestV2.txt The file is fine. It's tests. Note that ideally, we would only exclude test data, somehow like this: unicode: exclude: .*/tests/.* However, it does not work (at least on Zuul CI). (cherry picked from Fedora commit 96c5118ad6042153c6a45d5a8d670c97ee31cdb4) --- rpminspect.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 rpminspect.yaml diff --git a/rpminspect.yaml b/rpminspect.yaml new file mode 100644 index 0000000..b3f80c0 --- /dev/null +++ b/rpminspect.yaml @@ -0,0 +1,5 @@ +# completely disabled inspections: +inspections: + # we know about RIGHT-TO-LEFT OVERRIDE in tests/IdnaTestV2.txt + # (fine tuning of this inspection does not seem to work) + unicode: off