summary refs log tree commit diff
path: root/setup.cfg
blob: a0506572d96b4c0fa01aa5206e5ea5d1d09c3f14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[trial]
test_suite = tests

[check-manifest]
ignore =
    .git-blame-ignore-revs
    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