jacdac-python/pyproject.toml

48 строки
1.4 KiB
TOML
Исходник Постоянная ссылка Обычный вид История

2021-11-15 19:34:33 +03:00
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
2021-11-15 22:45:41 +03:00
2021-11-16 20:54:22 +03:00
[project]
name = "jacdac-python"
2021-11-16 20:54:22 +03:00
authors = [{name = "Microsoft"}]
dynamic = ["version", "description"]
2021-11-15 22:45:41 +03:00
[tool.pyright]
include = ["jacdac"]
typeCheckingMode = "basic"
2021-11-16 01:44:43 +03:00
useLibraryCodeForTypes = true
2021-11-15 22:45:41 +03:00
strictListInference = true
strictDictionaryInference = true
strictSetInference = true
strictParameterNoneValue = false
reportFunctionMemberAccess = "warning"
2022-01-10 03:04:50 +03:00
reportImportCycles = "warning"
2021-11-15 22:45:41 +03:00
reportUnusedImport = "warning"
reportUnusedClass = "warning"
reportUnusedFunction = "warning"
#reportUnusedVariable = "warning"
reportDuplicateImport = "warning"
reportUntypedFunctionDecorator = "warning"
reportUntypedClassDecorator = "warning"
reportUntypedBaseClass = "warning"
reportUntypedNamedTuple = "warning"
#reportPrivateUsage = "warning"
reportConstantRedefinition = "warning"
reportIncompatibleMethodOverride = "warning"
reportIncompatibleVariableOverride = "warning"
reportOverlappingOverload = "warning"
reportUnknownParameterType = "warning"
reportUnknownArgumentType = "warning"
reportUnknownLambdaType = "warning"
reportUnknownVariableType = "warning"
reportUnknownMemberType = "warning"
reportMissingParameterType = "warning"
reportMissingTypeArgument = "warning"
reportUnnecessaryIsInstance = "warning"
reportUnnecessaryCast = "warning"
reportUnnecessaryComparison = "warning"
reportInvalidStubStatement = "warning"
reportIncompleteStub = "warning"