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"]