Replace pylint with flake8

This change removes the use of pylint and implements similar
code style checks. This is complementary with black code formatter.
This commit is contained in:
Arun Babu Neelicattu 2019-06-28 17:00:28 +02:00 committed by mhchia
parent 4fef80595c
commit f20b78c93f
No known key found for this signature in database
GPG Key ID: 389EFBEA1362589A

6
.flake8 Normal file
View File

@ -0,0 +1,6 @@
[flake8]
ignore = E203, E266, E501, W503
max-line-length = 80
max-complexity = 18
select = B,C,E,F,W,T4,B9