From 09f51d98764f4875b3dc270ff57ba55c0778e2d1 Mon Sep 17 00:00:00 2001 From: Ross Beyer Date: Tue, 2 Jul 2024 17:25:09 -0700 Subject: [PATCH] build(Makefile): Added ufmt to lint target. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 3505216..17f7127 100644 --- a/Makefile +++ b/Makefile @@ -57,16 +57,16 @@ clean-test: ## remove test and coverage artifacts rm -fr test-resources lint/flake8: ## check style with flake8 - flake8 --max-complexity 10 --ignore E203,E501,W503 src/python/synthterrain tests + flake8 src/python/synthterrain tests/python/ lint/black: ## check style with black black --check src/python/synthterrain tests lint/ufmt: ## check format with ufmt ufmt check src/python/synthterrain - ufmt check tests + ufmt check tests/python -lint: lint/flake8 lint/black +lint: lint/flake8 lint/black lint/ufmt test: ## run tests quickly with the default Python pytest -s