From 38b4d5fa0f735c951ba8b8003732db183059f1c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Tue, 5 Aug 2025 21:49:19 +0200 Subject: [PATCH] perlcritic: no longer allow qx/backticks --- .perlcriticrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.perlcriticrc b/.perlcriticrc index 42ac1c77..2958fe9f 100644 --- a/.perlcriticrc +++ b/.perlcriticrc @@ -2,3 +2,6 @@ theme = community # 5 is the least complainy, 1 is the most complainy severity = 1 + +# Disallow backticks - use IPC::Run3 instead for better security +include = InputOutput::ProhibitBacktickOperators