1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
[tool:pytest]
addopts = --cov=aiohttp_cors --cov-report=term --cov-report=html --cov-branch --no-cov-on-fail
[flake8]
extend-select =
B950,
NIC001,
NIC101,
ignore = N801,N802,N803,NIC002,NIC102,E203,E226,E305,W504,E252,E301,E302,E501,E704,W503,W504,D1,D4
max-line-length = 88
requirements-file = requirements-dev.txt
requirements-max-depth = 4
[isort]
line_length = 88
include_trailing_comma = True
multi_line_output = 3
force_grid_wrap = 0
combine_as_imports = True
known_third_party = pytest,multidict,yarl
known_first_party = aiohttp
[egg_info]
tag_build =
tag_date = 0
|