MeshTalos-Client/managed_components/espressif__arduino-esp32/.flake8
2025-12-03 14:20:11 +08:00

10 lines
365 B
INI

# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-python/.flake8
# See: https://flake8.pycqa.org/en/latest/user/configuration.html
[flake8]
doctests = True
# W503 and W504 are mutually exclusive. PEP 8 recommends line break before.
ignore = W503,E203
max-complexity = 30
max-line-length = 120
select = E,W,F,C,N