🔧 Added example pyproject configuration including linter configuration

This commit is contained in:
Wouter de Bruijn 2025-06-17 10:32:47 +02:00
parent c07796f2bc
commit e1f3911046
No known key found for this signature in database
GPG Key ID: AC71F96733B92BFA

13
pyproject.toml Normal file
View File

@ -0,0 +1,13 @@
[tool.ruff]
line-length = 256
target-version = "py38"
[tool.ruff.lint]
select = ["E", "W", "F", "N", "T", "I"]
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
strict = false