Skip to content

Commit 860ae1f

Browse files
Use central config for ruff
1 parent 7cba716 commit 860ae1f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ test-protocols: ## Generates and runs the restJson1 protocol tests.
2121

2222
lint-py: ## Runs linters and formatters on the python packages.
2323
uv run docformatter packages --in-place || true
24-
uv run ruff check packages --fix
25-
uv run ruff format packages
24+
uv run ruff check packages --fix --config pyproject.toml
25+
uv run ruff format packages --config pyproject.toml
2626

2727

2828
check-py: ## Runs checks (formatting, lints, type-checking) on the python packages.
2929
uv run docformatter packages
30-
uv run ruff check packages
31-
uv run ruff format --check
30+
uv run ruff check packages --config pyproject.toml
31+
uv run ruff format --check --config pyproject.toml
3232
uv run pyright packages
3333

3434

0 commit comments

Comments
 (0)