-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.flake8
22 lines (22 loc) · 865 Bytes
/
.flake8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[flake8]
indent-size = 4
extend-ignore =
F403, # star imports
F405, # star imports
W503, # line break before binary operator
E128, # continuation line under-indented for visual indent
E221, # multiple spaces before operator
E251, # unexpected spaces around keyword / parameter equals
E701, # multiple statements with colon
E731, # do not assign a lambda expression
E741 # ambiguous variable name 'l'
extend-select =
E127, # continuation line over-indented for visual indent
E226, # missing whitespace around arithmetic operator
E231, # missing whitespace after ','
E251, # unexpected spaces around keyword / parameter equals
E266, # too many leading '#' for block comment
E302, # too few blank lines
E303, # too many blank lines
E501, # line too long
E541 # f-string is missing placeholders