1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
[flake8]
# Excludes due to known issues or incompatibilities with black:
# BLK100: Black would make changes. https://pypi.org/project/flake8-black/
# W503: https://github.com/psf/black/search?q=W503&unscoped_q=W503
# E231: https://github.com/psf/black/issues/1202
ignore = BLK100,E231,W503
statistics = 1
# black official is 88
max-line-length = 88
[tool:pytest]
testpaths = tests
addopts = -vvv --cov-report term-missing --cov=cookiecutter
[doc8]
# TODO: Remove current max-line-length ignore in follow-up and adopt black limit.
# max-line-length = 88
ignore = D001
|