forked from Azure-Samples/azure-search-openai-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (30 loc) · 744 Bytes
/
pyproject.toml
File metadata and controls
37 lines (30 loc) · 744 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
[tool.ruff]
target-version = "py39"
lint.select = ["E", "F", "I", "UP"]
lint.ignore = ["E501", "E701"] # line too long, multiple statements on one line
src = ["app/backend", "scripts"]
[tool.ruff.lint.isort]
known-local-folder = ["scripts"]
[tool.black]
line-length = 120
[tool.pytest.ini_options]
addopts = "-ra"
pythonpath = ["app/backend", "scripts"]
[tool.coverage.paths]
source = ["scripts", "app"]
[tool.coverage.report]
show_missing = true
[tool.mypy]
check_untyped_defs = true
python_version = 3.9
[[tool.mypy.overrides]]
module = [
"msal.*",
"msgraph.*",
"kiota_abstractions.*",
"kiota.*",
"azure.cognitiveservices.*",
"azure.cognitiveservices.speech.*",
"pymupdf.*",
]
ignore_missing_imports = true