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
|