From 1604af6438a291b01dac883c5e1067d418d27c91 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 04:00:11 +0000 Subject: [PATCH] fix: resolve CI build failures --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 62ee1cf..651f6ea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,8 +64,11 @@ line-length = 100 target-version = ['py39'] include = '\.pyi?$' -[tool.ruff] +[tool.ruff.lint] line-length = 100 target-version = "py39" select = ["E", "F", "W", "I", "B", "C4", "UP", "ARG", "SIM"] ignore = ["E501", "B008", "C901"] + +[tool.ruff.lint.per-file-ignores] +"git_commit_ai/tests/*" = ["ARG", "S"]