add flake8 config with some issues ignored

This commit is contained in:
alexey.lysiuk 2021-08-04 09:31:47 +03:00
parent fee7c667cb
commit 9d5f391c2c

5
.github/linters/.flake8 vendored Normal file
View file

@ -0,0 +1,5 @@
[flake8]
# E501 line too long (... > 79 characters)
# F403 'from ... import *' used; unable to detect undefined names
# F405 '...' may be undefined, or defined from star imports
ignore = E501,F403,F405