-
Notifications
You must be signed in to change notification settings - Fork 5
/
.flake8
30 lines (30 loc) · 847 Bytes
/
.flake8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[flake8]
import-order-style=pycharm
; Do not check files:
exclude =
venv
ignore =
# "Whitespace before ':'" - conflicts with Black
E203
# "line break before binary operator" - conflicts with Black
W503
# Missing docstring in public module - handled by pylint
D100
# Missing docstring in public class - handled by pylint
D101
# Missing docstring in public method - handled by pylint
D102
# Missing docstring in public function - handled by pylint
D103
# Missing docstring in public package - handled by pylint
D104
# imported but unused - handled by pylint
F401
# Missing docstring in magic method
D105
# Missing docstring in __init__
D107
# Multiple statements on one line (def) (conflict with black)
E704
# line too long - handled by pylint
E501