forked from facebookresearch/fairo
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.flake8
More file actions
24 lines (24 loc) · 719 Bytes
/
.flake8
File metadata and controls
24 lines (24 loc) · 719 Bytes
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 =
./droidlet/memory/ttad/
./droidlet/memory/ttad/generation_dialogues/
./droidlet/memory/ttad/ttad_model/
./droidlet/memory/ttad-annotate/flows.py
.git,
__pycache__,