https://bandit.readthedocs.io/en/latest/
Runs quickly, and gives IMO okay suggestions (not critical, but still good coding practices). But, it's an easy lift, and good to have. If you don't want them, you can adjust what warnings you want to see in your pyproject.toml, which we essentially already require for mypy.
[tool.bandit]
exclude_dirs = ["tests", "path/to/file"]
tests = ["B201", "B301"]
skips = ["B101", "B601"]
Or to skip everything:
[tool.bandit]
exclude_dirs=["docassemble"]