Add black --check as final lint step. ruff catches most but not all black formatting issues

This commit is contained in:
Micah Jerome Ellison 2023-07-03 11:40:33 -07:00
parent 7423c59116
commit 51d8369a01

View file

@ -100,6 +100,7 @@ lint.sequence = [
"poetry check",
"ruff --version",
"ruff .",
"black --check ."
]
test = [