-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
87 lines (76 loc) · 2.07 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
85
86
87
[metadata]
description_file = README.md
[bdist_wheel]
universal=1
# --------------------------------------------------------------------------------
# Linter
# --------------------------------------------------------------------------------
[pycodestyle]
max-line-length = 100
statistics = True
show-source = True
show-pep8 = True
[pydocstyle]
convention = google
# D107: Description is on the class level instead
add_ignore = D107
[flake8]
max-line-length = 100
[pylint]
# useless-object-inheritance: don't lint useless-object-inheritance to stary Python2/3 compatible
# bad-continuation: let Python Black take care of this
# unidiomatic-typecheck: Need to check if int or bool and this doesnt work with isinstance()
#disable = useless-object-inheritance, bad-continuation, unidiomatic-typecheck, duplicate-code, invalid-name
disable = duplicate-code, invalid-name, dangerous-default-value
max-branches = 25
max-statements = 100
max-args = 11
max-attributes = 10
max-locals = 22
min-public-methods = 1
# max-module-lines = 7000
# max-bool-expr = 6
# max-returns = 11
# min-public-methods = 1
# max-nested-blocks = 7
# List of note tags to take in consideration, separated by a comma.
#notes=FIXME,TODO
notes=FIXME
[mypy]
# Display
show_error_context = True
show_column_numbers = True
show_error_codes = True
pretty = True
color_output = True
error_summary = True
# Meta
warn_unused_configs = True
incremental = True
show_traceback = True
# Mode
strict_optional = True
# Allow
disallow_any_expr = False
disallow_any_explicit = False
disallow_any_decorated = False
# Deny
disallow_any_unimported = True
disallow_any_generics = True
disallow_subclassing_any = True
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
disallow_untyped_decorators = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_no_return = True
warn_return_any = True
warn_unreachable = True
allow_untyped_globals = False
allow_redefinition = False
[bandit]
# B101: asserts
# B404: blacklist (this is an offensive tool overall)
skips = B101,B404