Add flake8 to lint deps

This commit is contained in:
mhchia 2019-08-04 00:27:02 +08:00
parent 0a5b4a88ca
commit 1cc7e38846
No known key found for this signature in database
GPG Key ID: 389EFBEA1362589A

View File

@ -11,7 +11,12 @@ extras_require = {
"pytest-cov>=2.7.1,<3.0.0",
"pytest-asyncio>=0.10.0,<1.0.0",
],
"lint": ["mypy>=0.701,<1.0", "black==19.3b0", "isort==4.3.21"],
"lint": [
"mypy>=0.701,<1.0",
"black==19.3b0",
"isort==4.3.21",
"flake8>=3.7.7,<4.0.0",
],
"dev": ["tox>=3.13.2,<4.0.0"],
}