
We've depended on Click 7.x ever since we broke CI systems across the world (oops lol) and flake8-mypy was purged a fair bit back: #1867 Also remove the primer tests import in tests/test_black.py because it's annoying when just trying to actually target tests/test_black.py tests. `pytest -k test_black.py` doesn't do what you expect due to that import.
8 lines
295 B
INI
8 lines
295 B
INI
[flake8]
|
|
extend-ignore = E203, E266, E501
|
|
# line length is intentionally set to 80 here because black uses Bugbear
|
|
# See https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#line-length for more details
|
|
max-line-length = 80
|
|
max-complexity = 18
|
|
select = B,C,E,F,W,T4,B9
|