-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
69 lines (58 loc) · 1.1 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
[isort]
sections =
FUTURE,
STDLIB,
THIRDPARTY,
FIRSTPARTY,
LOCALFOLDER
default_section = LOCALFOLDER
known_third_party =
numpy,
pandas,
keras,
tensorflow,
sklearn,
matplotlib,
scipy
multi_line_output = 3
lines_after_imports = 2
force_single_line = True
use_parentheses = True
ensure_newline_before_comments = True
line_length = 80
[flake8]
exclude = .git,__pycache__,docs,old,build,dist
max-complexity = 30
max-line-length = 120
ignore=W504,F401,E402,E266,E203,W503,C408,C416,B001
[mypy]
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
follow_imports = silent
check_untyped_defs = false
disallow_incomplete_defs = true
disallow_untyped_defs = false
disallow_subclassing_any = false
strict_optional = false
no_implicit_optional = false
warn_no_return = true
warn_unreachable = true
[pylint.config]
[MASTER]
extension-pkg-whitelist=
numpy,
pandas,
keras,
tensorflow,
sklearn,
matplotlib,
scipy
[MESSAGES CONTROL]
disable=R,C
enable=E,W
jobs=1
confidence=HIGH
[FORMAT]
max-line-length = 120
max-module-lines = 2000