forked from prefix-dev/pixi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
28 lines (24 loc) · 1.18 KB
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
# there is no Python project,
# this file is just for configuring tools used in Python tests
[tool.inline-snapshot]
format-command = "pixi run -e lint ruff format --stdin-filename {filename}"
[tool.basedpyright]
ignore = [
"**/*.ipynb",
"**/docs_hooks.py",
"scripts/test_native_certs.py",
"pixi-build-backends",
"tests/data",
"site",
]
pythonPlatform = "All"
pythonVersion = "3.13"
typeCheckingMode = "all"
reportAny = false
reportExplicitAny = false
reportUnnecessaryIsInstance = false
reportUnusedCallResult = false
executionEnvironments = [
{ root = "docs", reportMissingImports = false, reportMissingModuleSource = false, reportUnknownVariableType = false, reportUnknownMemberType = false, reportUnusedCallResult = false, reportUnknownArgumentType = false },
{ root = "examples", reportMissingImports = false, reportMissingModuleSource = false, reportCallIssue = false, reportArgumentType = false, reportAttributeAccessIssue = false, reportUnknownMemberType = false, reportUnknownVariableType = false, reportUnknownParameterType = false, reportUnknownArgumentType = false, reportUnusedCallResult = false, reportMissingParameterType = false, reportUntypedFunctionDecorator = false },
]