From 39c04c8335b594e4ef04fc972262f4394399dc22 Mon Sep 17 00:00:00 2001 From: Zanie Date: Fri, 27 Oct 2023 12:30:49 -0500 Subject: [PATCH] Fix spacing in examples --- python/ruff-ecosystem/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python/ruff-ecosystem/README.md b/python/ruff-ecosystem/README.md index d93543ceae..fb3e10c089 100644 --- a/python/ruff-ecosystem/README.md +++ b/python/ruff-ecosystem/README.md @@ -21,13 +21,13 @@ Note executable paths must be absolute or relative to the current working direct Run `ruff check` ecosystem checks comparing your debug build to your system Ruff: ```shell -ruff-ecosystem check "$(which ruff)" "./target/debug/ruff" +ruff-ecosystem check "$(which ruff)" "./target/debug/ruff" ``` Run `ruff format` ecosystem checks comparing your debug build to your system Ruff: ```shell -ruff-ecosystem format "$(which ruff)" "./target/debug/ruff" +ruff-ecosystem format "$(which ruff)" "./target/debug/ruff" ``` ## Development @@ -35,11 +35,11 @@ ruff-ecosystem format "$(which ruff)" "./target/debug/ruff" When developing, it can be useful to set the `--pdb` flag to drop into a debugger on failure: ```shell -ruff-ecosystem check "$(which ruff)" "./target/debug/ruff" --pdb +ruff-ecosystem check "$(which ruff)" "./target/debug/ruff" --pdb ``` You can also provide a path to cache checkouts to speed up repeated runs: ```shell -ruff-ecosystem check "$(which ruff)" "./target/debug/ruff" --cache ./repos +ruff-ecosystem check "$(which ruff)" "./target/debug/ruff" --cache ./repos ```