Skip to content

Commit

Permalink
build(Makefile): Added ufmt to lint target.
Browse files Browse the repository at this point in the history
  • Loading branch information
rbeyer committed Jul 3, 2024
1 parent 8cc9d91 commit 09f51d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 09f51d9

Please sign in to comment.