clan-core/pyproject.toml
lassulus ed653fa8b9
All checks were successful
checks / check-links (pull_request) Successful in 21s
checks / checks-impure (pull_request) Successful in 1m58s
checks / checks (pull_request) Successful in 2m54s
fix pyproject syntax, ignore E731
2024-03-03 06:20:08 +01:00

15 lines
362 B
TOML

[tool.mypy]
python_version = "3.10"
pretty = true
warn_redundant_casts = true
disallow_untyped_calls = true
disallow_untyped_defs = true
no_implicit_optional = true
exclude = "clan_cli.nixpkgs"
[tool.ruff]
line-length = 88
target-version = "py311"
lint.select = [ "E", "F", "I", "U", "N", "RUF", "ANN", "A" ]
lint.ignore = [ "E501", "ANN101", "ANN401", "A003"]