forked from xMartin/cgm-ml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.flake8
28 lines (28 loc) · 957 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
[flake8]
ignore =
# I100, I101: Import statements are in the wrong order. Too much a hazzle for now
I100, I101,
# W503 line break before binary operator. Deactivated because of incompatibility with black
W503,
# Personal taste
E252,
E701,
# Don't be too strict
E265, # Block comment should start with '# '
E501, # long lines
E302 # Expected 2 blank lines, found 0
max_line_length = 120
import_order_style = appnexus
application_package_names = src
exclude =
.git,
__pycache__,
.ipynb_checkpoints,
src/models/GAPNet/GAPNet-height,
src/models/pointnet/pointnet-height,
src/models/PersonLab/PersonLabV1,
src/models/CNNDepthMap/CNNDepthMap-height/q2milestone-cnndepthmap-height,
src/models/CNNDepthMap/CNNDepthMap-height/s5-cnndepthmap-height,
src/models/CNNDepthMap/CNNDepthMap-height/s4-cnndepthmap-height,
src/models/CNNDepthMap/CNNDepthMap-height/q2s1-cnndepthmap-height
*/tmp_model_util