forked from ome9ax/target-s3-jsonl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (42 loc) · 1013 Bytes
/
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
[build-system]
requires = [
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.mypy]
show_error_context = true
ignore_missing_imports = true
files = "."
exclude = [
"setup.py",
"docs.*",
"docs.conf.*",
"build",
"venv"
]
# 'strict = true' is equivalent to the following:
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
disallow_untyped_calls = true
no_implicit_reexport = true
strict_equality = true
# The following need to have changes made to be able to enable them:
# disallow_any_generics = true
# no_implicit_optional = true
# warn_return_any = true
[[tool.mypy.overrides]] # Overrides for currently untyped modules
module = [
"target_s3_json.*"
]
[[tool.mypy.overrides]] # Overrides for currently untyped modules
ignore_errors = true
module = [
"tests.*"
]