mutablesequence
This commit is contained in:
@@ -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"]
|
||||
|
||||
Reference in New Issue
Block a user