fix: resolve CI build failures
Some checks failed
CI / test (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-01-31 04:00:11 +00:00
parent e7fd1fbb8a
commit 1604af6438

View File

@@ -64,8 +64,11 @@ line-length = 100
target-version = ['py39'] target-version = ['py39']
include = '\.pyi?$' include = '\.pyi?$'
[tool.ruff] [tool.ruff.lint]
line-length = 100 line-length = 100
target-version = "py39" target-version = "py39"
select = ["E", "F", "W", "I", "B", "C4", "UP", "ARG", "SIM"] select = ["E", "F", "W", "I", "B", "C4", "UP", "ARG", "SIM"]
ignore = ["E501", "B008", "C901"] ignore = ["E501", "B008", "C901"]
[tool.ruff.lint.per-file-ignores]
"git_commit_ai/tests/*" = ["ARG", "S"]