-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 807 Bytes
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 807 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
37
38
39
40
41
42
43
[tool.mypy]
python_version = "3.11"
show_error_codes = true
check_untyped_defs = true
warn_unused_configs = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
warn_unused_ignores = true
strict_equality = true
strict_concatenate = true
no_warn_no_return = true
[[tool.mypy.overrides]]
module = [
"*.tests.*",
"integration_tests.suite.*",
]
disallow_untyped_defs = false
disallow_untyped_calls = false
[tool.black]
skip-string-normalization = true
[tool.flake8]
show-source = true
max-line-length = 99
application-import-names = "xivo"
ignore = [
"E203", # whitespace before ':'
"W503", # line break before binary operator
]
exclude = [
".tox",
".eggs",
]
[tool.isort]
profile = "black"
py_version = 311
[tool.pytest]
testpaths = ["xivo"]