forked from Sin-tel/temper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (47 loc) · 1.09 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
[tool.mypy]
ignore_missing_imports = true
disallow_incomplete_defs = true
check_untyped_defs = true
allow_redefinition = true
warn_redundant_casts = true
# warn_return_any = true
# disallow_untyped_calls = true
[tool.black]
# line-length = 120
[mypy]
ignore_missing_imports = true
disallow_incomplete_defs = true
check_untyped_defs = true
allow_redefinition = true
warn_redundant_casts = true
# warn_return_any = true
# disallow_untyped_calls = true
[tool.pylint.'MESSAGES CONTROL']
disable=[
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"import-error",
"no-name-in-module",
"line-too-long",
"invalid-name",
"redefined-outer-name",
"too-many-locals",
"too-many-branches",
"too-many-arguments",
"too-many-locals",
"too-many-instance-attributes",
"too-many-public-methods",
"too-many-nested-blocks",
"too-many-statements",
"too-many-function-args",
"too-few-public-methods",
"too-many-lines",
"too-many-return-statements",
"fixme",
"wildcard-import",
"unused-wildcard-import",
"consider-using-f-string",
]