From 80beab9f23d888d668405b42de50f105abe349e2 Mon Sep 17 00:00:00 2001 From: mgaughan Date: Tue, 5 Aug 2025 21:36:32 -0400 Subject: [PATCH] ruff-fix -> ruff-clean; there is no ruff-fix in the Makefile. Maybe the command /should/ be ruff-fix to align with the underlying ruff command; for later discussion. This at least reconciles the documentation to the Makefile --- docs/source/development/style_guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/development/style_guide.md b/docs/source/development/style_guide.md index 390f11a..f1e61ac 100644 --- a/docs/source/development/style_guide.md +++ b/docs/source/development/style_guide.md @@ -50,7 +50,7 @@ Note not all warnings can be fixed automatically. Most fixes are safe, but some non-standard practices such as dynamic loading are not picked up by linters. Ensure you check any modifications by this before committing them. ```shell -make ruff-fix +make ruff-clean ``` **Changing Configurations ⚙️** @@ -67,4 +67,4 @@ One example is to extend the selected rules for linting the `pyproject.toml` fil extend-select = ["B"] ``` -Then re-run the `make ruff-check` command to see the new rules in action. \ No newline at end of file +Then re-run the `make ruff-check` command to see the new rules in action.