# Bandit security linter configuration (YAML format)
# https://bandit.readthedocs.io/

exclude_dirs:
  - /tests
  - /.venv
  - /venv
  - /alembic/versions

skips:
  - B101  # assert_used - we use asserts in tests
  - B601  # paramiko_calls - not applicable
