bootstrapit update

This commit is contained in:
Manuel Barkhau 2020-05-25 07:45:46 +00:00
parent 02597962d0
commit 4d8395050f
9 changed files with 94 additions and 57 deletions

View file

@ -10,6 +10,7 @@ disallow_untyped_calls = True
follow_imports = silent
strict_optional = True
ignore_missing_imports = True
show_error_codes = True
[flake8]
max-line-length = 100
@ -27,10 +28,12 @@ ignore =
E221
# Multiple spaces after operand
E222
# Multiple spaces before keyword
E272
# Multiple spaces after ':'
E241
# Spaces around keyword/parameter equals
E251
# Multiple spaces before keyword
E272
# Line too long (B950 is used instead)
E501
# Line break before binary op
@ -45,10 +48,14 @@ ignore =
D102
# Missing docstring in public function
D103
# Missing docstring in magic method
# D105
# Missing docstring on __init__
D107
# No blank lines allowed after function docstring
D202
# First line should end in a period
D400
# First line should be in imperative mood
D401
select = A,AAA,D,C,E,F,W,H,B,D212,D404,D405,D406,B901,B950