We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2da31e2 commit e9805d0Copy full SHA for e9805d0
1 file changed
Makefile
@@ -18,6 +18,9 @@ format:
18
lint:
19
poetry run ruff .
20
21
+bandit:
22
+ poetry run bandit -c .bandit.yml -r .
23
+
24
format-fix:
25
poetry run black .
26
@@ -31,7 +34,7 @@ update-dependencies:
31
34
poetry update --with dev
32
35
33
36
fix: format-fix lint-fix
-check: typing test format lint
37
+check: typing format lint test bandit
38
39
docs:
40
poetry run mkdocs serve
0 commit comments