-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
74 lines (60 loc) · 1.39 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
[mypy]
strict = True
implicit_reexport = True
disallow_any_explicit = True
[mypy-test.*]
allow_untyped_defs = True
allow_incomplete_defs = True
########################################
[coverage:run]
branch = True
concurrency = multiprocessing
[coverage:report]
fail_under = 100
skip_covered = True
partial_branches =
no-branch
itertools\.count()
exclude_also =
no-cover
-> .*: \.\.\.
if TYPE_CHECKING:
########################################
[mutmut]
runner = python3 -m unittest test.test_tape
paths_to_mutate = tm/tape.py
########################################
[pylint.'MESSAGES CONTROL']
disable =
duplicate-code,
compare-to-zero,
no-name-in-module,
consider-using-in,
unspecified-encoding,
too-few-public-methods,
magic-value-comparison,
missing-class-docstring,
too-many-public-methods,
consider-using-f-string,
redefined-variable-type,
missing-module-docstring,
missing-function-docstring,
misplaced-comparison-constant,
[pylint.FORMAT]
max-line-length = 72
good-names = maxDiff
[pylint.DESIGN]
max-args = 7 # c
max-locals = 19 # machine
max-returns = 7 # prover
max-branches = 23 # num
max-complexity = 22 # machine
max-attributes = 14 # machine
max-statements = 70 # machine
[pylint.DEPRECATED_BUILTINS]
bad-functions =
getattr,
setattr,
[pylint.REPORTS]
reports = no
score = no