From acc9092baa6fd05ae0441609cd5bfd26b068f8ba Mon Sep 17 00:00:00 2001 From: kitos Date: Fri, 12 Jun 2026 12:59:58 +0200 Subject: [PATCH] fix(.bandit): use YAML format for bandit config (was INI, caused parse error) --- backend/.bandit | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/backend/.bandit b/backend/.bandit index 909b3c1..7697a4d 100644 --- a/backend/.bandit +++ b/backend/.bandit @@ -1,4 +1,2 @@ -[bandit] -# B311: seed_demo.py uses random exclusively for fake demo data generation, -# not for any cryptographic or security-sensitive purpose. -skips = B311 +skips: + - B311