2014-08-12 10:10:52 -04:00
|
|
|
[trial]
|
|
|
|
test_suite = tests
|
2015-01-22 09:32:51 -05:00
|
|
|
|
|
|
|
[check-manifest]
|
|
|
|
ignore =
|
2021-03-09 07:34:55 -05:00
|
|
|
.git-blame-ignore-revs
|
2015-01-22 09:32:51 -05:00
|
|
|
contrib
|
|
|
|
contrib/*
|
|
|
|
docs/*
|
|
|
|
pylint.cfg
|
|
|
|
tox.ini
|
2015-08-13 08:12:33 -04:00
|
|
|
|
2018-07-18 15:55:37 -04:00
|
|
|
[flake8]
|
2018-10-24 05:35:01 -04:00
|
|
|
# see https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
|
|
|
|
# for error codes. The ones we ignore are:
|
|
|
|
# W503: line break before binary operator
|
|
|
|
# W504: line break after binary operator
|
|
|
|
# E203: whitespace before ':' (which is contrary to pep8?)
|
|
|
|
# E731: do not assign a lambda expression, use a def
|
|
|
|
# E501: Line too long (black enforces this for us)
|
2021-04-20 06:50:49 -04:00
|
|
|
ignore=W503,W504,E203,E731,E501
|
2018-07-18 15:55:37 -04:00
|
|
|
|
2018-07-09 02:05:21 -04:00
|
|
|
[isort]
|
|
|
|
line_length = 88
|
2021-04-09 13:44:38 -04:00
|
|
|
sections=FUTURE,STDLIB,THIRDPARTY,TWISTED,FIRSTPARTY,TESTS,LOCALFOLDER
|
2018-07-09 02:05:21 -04:00
|
|
|
default_section=THIRDPARTY
|
|
|
|
known_first_party = synapse
|
|
|
|
known_tests=tests
|
|
|
|
known_twisted=twisted,OpenSSL
|
|
|
|
multi_line_output=3
|
|
|
|
include_trailing_comma=true
|
2018-07-19 06:03:33 -04:00
|
|
|
combine_as_imports=true
|