-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.flake8
More file actions
35 lines (35 loc) · 663 Bytes
/
.flake8
File metadata and controls
35 lines (35 loc) · 663 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
25
26
27
28
29
30
31
32
33
34
35
[flake8]
inline-quotes = double
max-line-length = 79
max-complexity = 10
exclude = .git,
.tox,
.pytest_cache,
__pycache__,
tensorflow_graphics/projects/*
tensorflow_graphics/submodules/*
test*.py
time*.py
ignore = C901,
E101,
E111,
E114,
E121,
E125,
E126,
E129,
E221,
E265,
E271,
E305,
E306,
#E501,
E402, # module level import not at top of file
E502,
E731,
E741,
F401,
F812,
W191,
W503,
W504,