mutablesequence

This commit is contained in:
John Lancaster
2026-02-21 18:16:42 -06:00
parent f9d5b12a21
commit 8cff84f4e9
3 changed files with 108 additions and 5 deletions

View File

@@ -19,3 +19,24 @@ dev = [
"rich>=14.3.3",
"ruff>=0.15.2",
]
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"SIM", # flake8-simplify
]
extend-fixable = ["ALL"]
ignore = ["UP046", "UP047"]
[tool.ruff.lint.isort]
known-first-party = ["hooked_containers"]