forked from facebookresearch/craftassist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.flake8
24 lines (24 loc) · 741 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
[flake8]
max-line-length = 99
ignore =
E1, # indentation
E2, # whitespace
E3, # blank line
E5, # line length
E402, # module level import not at top of file
E722, # do not use bare except
E731, # do not assign a lambda expression, use a def
E741, # ambiguous variable name 'l'
F403, # from module import *’ used; unable to detect undefined
F405, # may be undefined, or defined from star imports
W1, # indentation
W2, # whitespace
W3, # blank line
W5, # line break
exclude =
./python/craftassist/ttad/generation_dialogues/
./python/craftassist/ttad/ttad_model/
./python/craftassist/ttad-annotate/flows.py
./python/craftassist/vision_training
.git,
__pycache__,