2018-11-11 23:49:01 +03:00
|
|
|
[flake8]
|
Remove W503 from flake8 ignore list (ignored by default)
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.
2020-08-31 21:31:35 +03:00
|
|
|
extend-ignore = E203
|
2018-11-11 23:49:01 +03:00
|
|
|
max-line-length = 88
|
2019-07-02 11:52:14 +03:00
|
|
|
|
2019-07-06 23:40:53 +03:00
|
|
|
[isort]
|
2020-08-07 13:28:33 +03:00
|
|
|
profile = black
|
2019-07-06 23:40:53 +03:00
|
|
|
|
2019-07-02 11:52:14 +03:00
|
|
|
[tool:pytest]
|
2020-06-28 09:01:39 +03:00
|
|
|
addopts = -ra --color=yes
|
2020-05-17 14:35:58 +03:00
|
|
|
testpaths = Tests
|