Update ruff config

I saw this warning on the terminal...
This commit is contained in:
Jeff Epler 2025-03-06 10:17:35 -06:00
parent 4ffb57c3d5
commit d26bba84ba

View file

@ -9,14 +9,14 @@ build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.ruff]
extend-select = [
lint.extend-select = [
"B", # flake8-bugbear
"I", # isort
"PGH", # pygrep-hooks
"RUF", # Ruff-specific
"UP", # pyupgrade
]
extend-ignore = [
lint.extend-ignore = [
"E501", # Line too long
]
target-version = "py311"