mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
01f82bfe32
https://github.com/matrix-org/synapse/tree/develop/docs/sphinx doesn't seem to really be utilised or changed recently since the initial commit. I like the idea of exportable documentation of the codebase, but at the moment after running through the build instructions the generated website wasn't very useful...
33 lines
827 B
INI
33 lines
827 B
INI
[trial]
|
|
test_suite = tests
|
|
|
|
[check-manifest]
|
|
ignore =
|
|
contrib
|
|
contrib/*
|
|
docs/*
|
|
pylint.cfg
|
|
tox.ini
|
|
|
|
[flake8]
|
|
# 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)
|
|
ignore=W503,W504,E203,E731,E501
|
|
|
|
[isort]
|
|
line_length = 88
|
|
sections=FUTURE,STDLIB,COMPAT,THIRDPARTY,TWISTED,FIRSTPARTY,TESTS,LOCALFOLDER
|
|
default_section=THIRDPARTY
|
|
known_first_party = synapse
|
|
known_tests=tests
|
|
known_compat = mock
|
|
known_twisted=twisted,OpenSSL
|
|
multi_line_output=3
|
|
include_trailing_comma=true
|
|
combine_as_imports=true
|