From 046ce9574ec5153b7a1ef8aa777c749495f41487 Mon Sep 17 00:00:00 2001 From: Farid Zakaria Date: Sat, 6 Apr 2024 04:39:30 +0000 Subject: [PATCH] Add tools to Makefile for fmt & lint --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index d8f37ea..90fc9a9 100644 --- a/Makefile +++ b/Makefile @@ -15,15 +15,15 @@ show: ## Show the current environment. .PHONY: fmt fmt: ## Format code using black & isort. - isort sqlelf/ benchmarks/ tests/ - black sqlelf/ benchmarks/ tests/ + isort sqlelf/ benchmarks/ tests/ tools/ + black sqlelf/ benchmarks/ tests/ tools/ .PHONY: lint lint: ## Run pep8, black, mypy linters. - flake8 sqlelf/ benchmarks/ tests/ - black --check sqlelf/ benchmarks/ tests/ + flake8 sqlelf/ benchmarks/ tests/ tools/ + black --check sqlelf/ benchmarks/ tests/ tools/ pyright - mypy --strict --install-types --non-interactive sqlelf tests + mypy --strict --install-types --non-interactive sqlelf tests tools .PHONY: test test: ## Run pytest primarily.