2019-11-12 01:18:53 +00:00
|
|
|
# Flake8 configuration
|
|
|
|
# Copy or symlink this file to ~/.flake8
|
|
|
|
# --------------------------------------
|
|
|
|
# E128: continuation line under-indented for visual indent
|
|
|
|
# E701: multiple statements on one line (colon)
|
|
|
|
# E702: multiple statements on one line (semicolon)
|
|
|
|
# E731: do not assign a lambda expression, use a def
|
|
|
|
# W503: line break before binary operator
|
|
|
|
# W605: invalid escape sequence
|
|
|
|
[flake8]
|
2023-08-29 03:29:39 +00:00
|
|
|
ignore=E128,E701,E702,E731,W503,W605
|
|
|
|
exclude=compat.py,venv
|
|
|
|
per-file-ignores =
|
|
|
|
tests/payloads.py:E501
|
2019-11-12 01:18:53 +00:00
|
|
|
max-complexity = -1
|
2023-08-29 03:29:39 +00:00
|
|
|
# The GitHub editor is 127 chars wide
|
|
|
|
max-line-length = 127
|
2019-11-12 01:18:53 +00:00
|
|
|
show-source = True
|