-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.flake8
34 lines (33 loc) · 1.01 KB
/
.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
31
32
33
34
[flake8]
ignore =
### Covered better by pylint
# Line too long
E501,
### Covered by pylint
# Imported but unused
F401,
### in conflict with black
# line break before binary operator
W503,
# expected 2 blank lines, found 0
E302,
# No blank lines allowed after function docstring
D202,
### We do not currently require docstrings in "magic methods"
# missing docstring in magic method
D105,
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
settings2d.py:D101,D102,D106,D107
camera_state.py:D101,D102,D106,D107
camera_info.py:D101,D102,D106,D107
camera_intrinsics.py:D101,D102,D106,D107
frame_info.py:D101,D102,D106,D107
network_configuration.py:D101,D102,D106,D107
scene_conditions.py:D101,D102,D106,D107