[flake8]
# This file is recognised by the QGIS Plugin Repository's security scanner
# (listed in SECURITY_CONFIG_FILES).  The scanner passes it explicitly via
# --config, so these settings apply at both upload time and in CI.

max-line-length = 120

# E203 - whitespace before ':': valid Black-style slice notation
# E501 - line too long: many intentional long strings / translated messages
# E741 - ambiguous variable name 'l': legacy code, low risk
extend-ignore = E203,E501,E741
