diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f6f30c2..d99cf44 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: - name: Initialize environment run: uv sync --locked --all-groups - - name: Run black + - name: Run ruff format check run: uv run ruff format --check temba_client - name: Run ruff diff --git a/pyproject.toml b/pyproject.toml index 7ea51ac..42b8c3e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,9 +39,6 @@ include = ["temba_client"] requires = ["hatchling"] build-backend = "hatchling.build" -[tool.black] -line-length = 119 - [tool.ruff] line-length = 120 fix = true @@ -53,7 +50,7 @@ ignore = ["E501", "F405"] [tool.isort] multi_line_output = 3 force_grid_wrap = 0 -line_length = 119 +line_length = 120 include_trailing_comma = true combine_as_imports = true sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]