forked from OmarFaig/UdemyTF_Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
84 lines (73 loc) · 1.22 KB
/
setup.cfg
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[isort]
line_length = 80
lines_after_imports = 2
sections =
FUTURE,
STDLIB,
THIRDPARTY,
FIRSTPARTY,
LOCALFOLDER
default_section = LOCALFOLDER
known_third_party =
numpy,
pandas,
keras,
tensorflow,
tensorflow_datasets,
tensorflow_addons,
tensorcross,
optuna,
sciypy,
sklearn,
matplotlib,
keract,
skimage,
cv2,
pyqt5,
gym,
PyQt5,
scipy
known_first_party = tf_utils
multi_line_output = 3
force_single_line = True
[flake8]
exclude = .git,__pycache__,docs,old,build,dist
max-complexity = 30
max-line-length = 120
ignore=E266,W504,F401,E402,E203,W503
[mypy]
warn_return_any = false
warn_unused_configs = true
ignore_missing_imports = true
follow_imports = silent
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_defs = false
[pylint.config]
[MASTER]
extension-pkg-whitelist=
numpy,
pandas,
keras,
tensorflow,
tensorflow_datasets,
tensorflow_addons,
tensorcross,
tf_utils,
optuna,
sciypy,
sklearn,
matplotlib,
keract,
skimage,
cv2,
pyqt5,
gym,
PyQt5,
scipy
[MESSAGES CONTROL]
disable=R,C,W
enable=E
[FORMAT]
max-line-length = 120
max-module-lines = 2000