From df5974cee810b80abd42b58bdf8da098c5712a2b Mon Sep 17 00:00:00 2001 From: Brent O'Connor Date: Sat, 16 Sep 2023 09:29:33 -0500 Subject: [PATCH] Have bandit ignore the node_modules directory --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 183870c0..8d00d214 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,7 +56,7 @@ filterwarnings = [ ] [tool.bandit] -exclude_dirs = ["tests"] +exclude_dirs = ["tests", "node_modules"] [tool.coverage.run] branch = true