mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
2a194a6323
See: https://pycodestyle.pycqa.org/en/latest/intro.html#error-codes > In the default configuration, the checks E121, E123, E126, E133, E226, > E241, E242, E704, W503, W504 and W505 are ignored because they are not > rules unanimously accepted, and PEP 8 does not enforce them.
11 lines
135 B
INI
11 lines
135 B
INI
[flake8]
|
|
extend-ignore = E203
|
|
max-line-length = 88
|
|
|
|
[isort]
|
|
profile = black
|
|
|
|
[tool:pytest]
|
|
addopts = -ra --color=yes
|
|
testpaths = Tests
|