From 5ccf8f565c2f624612148e5244cab691c257d099 Mon Sep 17 00:00:00 2001 From: Andrey Kislyuk Date: Sun, 4 Aug 2024 12:20:09 -0700 Subject: [PATCH] Use ruff check --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 75d8b05..2e91357 100644 --- a/Makefile +++ b/Makefile @@ -4,8 +4,8 @@ test_deps: python -m pip install .[test] lint: - for dir in $$(dirname */__init__.py); do ruff $$dir; done - for script in scripts/*[^cmd]; do if grep -q python $$script; then ruff $$script; fi; done + for dir in $$(dirname */__init__.py); do ruff check $$dir; done + for script in scripts/*[^cmd]; do if grep -q python $$script; then ruff check $$script; fi; done mypy --install-types --non-interactive argcomplete test: