[flake8]
max-line-length = 140
extend-ignore = 
    # F403: 'from module import *' used; unable to detect undefined names
    # F405: name may be undefined, or defined from star imports
    # Acceptable for ctypes bindings where wildcard imports are idiomatic
    F403,
    F405,
    # E266: too many leading '#' for block comment
    # Used for visual section separators
    E266
per-file-ignores =
    # Allow module-level imports not at top of file in examples
    source/examples/pyzes_example.py:E402
