forked from Andre0512/pyhOn
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (34 loc) · 961 Bytes
/
pyproject.toml
File metadata and controls
36 lines (34 loc) · 961 Bytes
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
[tool.mypy]
disable_error_code = "annotation-unchecked"
enable_error_code = "ignore-without-code, redundant-self, truthy-iterable"
follow_imports = "silent"
check_untyped_defs = true
disallow_any_generics = true
disallow_any_unimported = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
local_partial_types = true
no_implicit_optional = true
no_implicit_reexport = true
show_error_codes = true
strict_concatenate = false
strict_equality = true
warn_incomplete_stub = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.ruff]
lint.extend-select = [
"I", # Imports
"SLF001", # Private member access
"PYI018", # Unused TypeVar
]
[tool.pytest.ini_options]
pythonpath = ['.']
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"