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

exclude_dirs:
  - /tests
  - /examples
  - /venv
  - /.venv
  - /build
  - /dist

# Test IDs to skip
# B101: Test for use of assert - common in test code and data validation
# B311: Standard pseudo-random generators - OK for example/demo code
skips:
  - B101
  - B311
