diff --git a/pyproject.toml b/pyproject.toml index 651f6ea..d3a1fd1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,14 +59,11 @@ omit = ["git_commit_ai/tests/*"] [tool.coverage.report] exclude_lines = ["pragma: no cover", "def __repr__", "raise AssertionError", "raise NotImplementedError"] -[tool.black] -line-length = 100 -target-version = ['py39'] -include = '\.pyi?$' - -[tool.ruff.lint] +[tool.ruff] line-length = 100 target-version = "py39" + +[tool.ruff.lint] select = ["E", "F", "W", "I", "B", "C4", "UP", "ARG", "SIM"] ignore = ["E501", "B008", "C901"]