mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
db4f823d34
Apparently flake8 v3 doesn't like trailing comments on config settings. Also remove the pep8 config, which didn't work (because it was missing W503) and duplicated the flake8 config. We don't use pep8 on its own, so the config was duplicative.
21 lines
340 B
INI
21 lines
340 B
INI
[build_sphinx]
|
|
source-dir = docs/sphinx
|
|
build-dir = docs/build
|
|
all_files = 1
|
|
|
|
[trial]
|
|
test_suite = tests
|
|
|
|
[check-manifest]
|
|
ignore =
|
|
contrib
|
|
contrib/*
|
|
docs/*
|
|
pylint.cfg
|
|
tox.ini
|
|
|
|
[flake8]
|
|
max-line-length = 90
|
|
# W503 requires that binary operators be at the end, not start, of lines. Erik doesn't like it.
|
|
ignore = W503
|