paypal-reports/.flake8

8 lines
272 B
INI

# Flake8 Python linting configuration
# https://flake8.pycqa.org/en/latest/
[flake8]
# W503 is line break before binary operator - I think reads better this way.
# E501 line is too long - who cares.
# E731 do not assign a lambda expression - pah!
ignore = E501,E731,W503