nix-direnv/pyproject.toml
2023-11-29 08:32:42 +01:00

45 lines
1.1 KiB
TOML

[tool.ruff]
target-version = "py311"
line-length = 88
select = ["ALL"]
ignore = [
# pydocstyle
"D",
# Missing type annotation for `self` in method
"ANN101",
# Trailing comma missing
"COM812",
# Unnecessary `dict` call (rewrite as a literal)
"C408",
# Boolean-typed positional argument in function definition
"FBT001",
# Logging statement uses f-string
"G004",
# disabled on ruff's recommendation as causes problems with the formatter
"ISC001",
# Use of `assert` detected
"S101",
# `subprocess` call: check for execution of untrusted input
"S603",
# FIXME? Maybe we should enable these?
"PLR0913", # Too many arguments in function definition (7 > 5)
"PLR2004", # Magic value used in comparison, consider replacing 4 with a constant variable
"FBT002", # Boolean default positional argument in function definition
]
[tool.mypy]
python_version = "3.10"
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