🔧 Add flake8 to make style-check (#12137)

This commit is contained in:
Chris Sewell
2024-03-19 10:07:41 +01:00
committed by GitHub
parent aaecc9376d
commit 3f3d3d8517
2 changed files with 2 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ exclude =
.git,
.tox,
.venv,
node_modules/*,
tests/roots/*,
build/*,
doc/_build/*,

View File

@@ -45,6 +45,7 @@ clean: clean
.PHONY: style-check
style-check:
@flake8 .
@ruff check .
.PHONY: type-check