forked from zivid/zivid-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
25 lines (24 loc) · 870 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
[flake8]
ignore =
### Covered better by pylint
E501, # Line too long
### Covered by pylint
F401, # Imported but unused
### in conflict with black
W503, # line break before binary operator
E302, # expected 2 blank lines, found 0
D202, # No blank lines allowed after function docstring
### We do not currently require docstrings in "magic methods"
D105, # missing docstring in magic method
show-source = True
### Ignore docstring complaints in data models
### D101: Missing docstring in public class
### D102: Missing docstring in public method
### D106: Missing docstring in public nested class
### D107: Missing docstring in __init__
per-file-ignores =
settings.py:D101,D102,D106,D107
settings_2d.py:D101,D102,D106,D107
camera_state.py:D101,D102,D106,D107
camera_info.py:D101,D102,D106,D107
frame_info.py:D101,D102,D106,D107