# Bandit configuration file for pyspark-analyzer
# https://bandit.readthedocs.io/en/latest/config.html

exclude:
  - /tests
  - /venv
  - /.venv
  - /build
  - /dist

# Test IDs to skip
# B101: Test for use of assert - common in test code and data validation
skips:
  - B101
