flake8: Set min-version for flake8-future-imports
This commit is contained in:
parent
100d284cdd
commit
3a8ab8ea02
3
.flake8
3
.flake8
@ -30,7 +30,6 @@ exclude = .venv,.hypothesis,.git,__pycache__,resources.py
|
|||||||
# D211: No blank lines allowed before class docstring
|
# D211: No blank lines allowed before class docstring
|
||||||
# (PEP257 got changed, but let's stick to the old standard)
|
# (PEP257 got changed, but let's stick to the old standard)
|
||||||
# D402: First line should not be function's signature (false-positives)
|
# D402: First line should not be function's signature (false-positives)
|
||||||
# FI10 - FI17: __future__ import missing
|
|
||||||
# H101: Use TODO(NAME)
|
# H101: Use TODO(NAME)
|
||||||
# H201: bare except
|
# H201: bare except
|
||||||
# H238: Use new-stule classes
|
# H238: Use new-stule classes
|
||||||
@ -43,8 +42,8 @@ ignore =
|
|||||||
L101,L102,L103,L201,L202,L203,L204,L207,L302,
|
L101,L102,L103,L201,L202,L203,L204,L207,L302,
|
||||||
P101,P102,P103,
|
P101,P102,P103,
|
||||||
D102,D103,D104,D105,D209,D211,D402,
|
D102,D103,D104,D105,D209,D211,D402,
|
||||||
FI10,FI11,FI12,FI13,FI14,FI15,FI16,FI17,
|
|
||||||
H101,H201,H238,H301,H306
|
H101,H201,H238,H301,H306
|
||||||
|
min-version = 3.4.0
|
||||||
max-complexity = 12
|
max-complexity = 12
|
||||||
putty-auto-ignore = True
|
putty-auto-ignore = True
|
||||||
putty-ignore =
|
putty-ignore =
|
||||||
|
Loading…
Reference in New Issue
Block a user