[flake8]
max-line-length = 120
# F841: local variable assigned but never used — many are intentional debug/future-use assignments
# E501: line too long — URLs and log messages in monitoring code are exempt
extend-ignore = F841, E501
exclude = __pycache__, .git
