You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
[flake8]
|
|
|
|
max-line-length = 90
|
|
|
|
# W503 requires that binary operators be at the end, not start, of lines. Erik doesn't like it.
|
|
|
|
# E501: Line too long (black enforces this for us)
|
|
|
|
ignore = W503,E501
|
|
|
|
|
|
|
|
[isort]
|
|
|
|
line_length = 88
|
|
|
|
not_skip = __init__.py
|
|
|
|
sections = FUTURE,STDLIB,THIRDPARTY,SYNAPSE,FIRSTPARTY,TESTS,LOCALFOLDER
|
|
|
|
default_section = THIRDPARTY
|
|
|
|
known_synapse = synapse
|
|
|
|
known_first_party = matrix_synapse_saml_mozilla
|
|
|
|
known_tests = tests
|
|
|
|
multi_line_output = 3
|
|
|
|
include_trailing_comma = true
|
|
|
|
combine_as_imports = true
|