nix-update/pyproject.toml

22 lines
411 B
TOML
Raw Normal View History

2022-11-21 00:09:48 +03:00
[tool.ruff]
target-version = "py311"
2022-11-21 00:09:48 +03:00
line-length = 88
2023-08-25 09:53:31 +03:00
select = ["E", "F", "I", "U"]
2022-11-21 00:09:48 +03:00
ignore = [ "E501" ]
[tool.mypy]
python_version = "3.11"
2022-11-21 00:09:48 +03:00
warn_redundant_casts = true
disallow_untyped_calls = true
disallow_untyped_defs = true
no_implicit_optional = true
[[tool.mypy.overrides]]
module = "setuptools.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "pytest.*"
ignore_missing_imports = true