From eebbc2eca6e29cb846049c6c733799a53698c1e7 Mon Sep 17 00:00:00 2001 From: Stijn de Gooijer Date: Tue, 24 Oct 2023 22:45:42 +0200 Subject: [PATCH] Update check command --- py-polars/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-polars/Makefile b/py-polars/Makefile index 13832c684f02..7b386188b2b7 100644 --- a/py-polars/Makefile +++ b/py-polars/Makefile @@ -56,7 +56,7 @@ build-release-native: .venv ## Same as build-release, except with native CPU op .PHONY: fmt fmt: .venv ## Run autoformatting and linting - $(VENV_BIN)/ruff . + $(VENV_BIN)/ruff check . $(VENV_BIN)/ruff format . $(VENV_BIN)/blackdoc . $(VENV_BIN)/typos ..