File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,14 @@ test-protocols: ## Generates and runs the restJson1 protocol tests.
2121
2222lint-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
2828check-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
You can’t perform that action at this time.
0 commit comments