Global: add .flake8

This commit is contained in:
Pierre Kancir 2018-08-02 12:02:17 +02:00 committed by Peter Barker
parent 6e7e24ac91
commit 85fde70f07
1 changed files with 12 additions and 0 deletions

12
.flake8 Normal file
View File

@ -0,0 +1,12 @@
[flake8]
ignore =
# H301: one import per line
H301,
# H306: imports not in alphabetical order (time, os)
H306,
# E226: missing whitespace around arithmetic operator
E226,
# E261 at least two spaces before inline comment
E261
max-line-length = 127