From 0f96265933397b50e48ca2c2fc91d9bc3cc40235 Mon Sep 17 00:00:00 2001 From: Nicola Sella Date: Fri, 29 Nov 2024 17:27:45 +0100 Subject: [PATCH] Enable Flake Bandit checks Bandit provides security checks and good practices suggestions for the codebase. https://pypi.org/project/flake8-bandit/ Signed-off-by: Nicola Sella --- ruff.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruff.toml b/ruff.toml index 3695cb26..84bceb20 100644 --- a/ruff.toml +++ b/ruff.toml @@ -20,7 +20,7 @@ select = [ "N", # PEP8 Naming "UP", # Pyupgrade # TODO "ANN", - # TODO "S", # Bandit + "S", # Bandit "B", # Bugbear "A", # flake-8-builtins "YTT", # flake-8-2020