Add ESC data and improve scoring system functionality

This commit is contained in:
2025-06-10 22:30:08 +02:00
parent a9ab9ff75a
commit 2fd9d7f548
7 changed files with 269 additions and 113 deletions

View File

@@ -13,6 +13,7 @@ dependencies = [
[dependency-groups]
dev = [
"basedpyright>=1.29.2",
"orjson>=3.10.18",
"ruff>=0.11.13",
]
@@ -38,3 +39,13 @@ docstring-code-line-length = "dynamic"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"PLR0915",
"D100",
"D104",
"COM812",
"D213",
"D203",
"ISC003" # conflicts with basedpyright reportImplicitStringConcatenation"
]
per-file-ignores = { "tests/**/*" = ["S101", "BLE001"] }