clean up poe config

This commit is contained in:
Jonathan Wren 2022-10-30 12:20:42 -07:00
parent 13f12dbe19
commit 4e68644f91
No known key found for this signature in database

View file

@ -83,17 +83,21 @@ test-run = [
]
# Groups of tasks
format = [
{cmd = "isort ."},
{cmd = "black ."},
format.default_item_type = "cmd"
format.sequence = [
"isort .",
"black .",
]
lint = [
{cmd = "poetry --version"},
{cmd = "poetry check"},
{cmd = "flakeheaven --version"},
{cmd = "flakeheaven plugins"},
{cmd = "flakeheaven lint"},
lint.default_item_type = "cmd"
lint.sequence = [
"poetry --version",
"poetry check",
"flakeheaven --version",
"flakeheaven plugins",
"flakeheaven lint",
]
test = [
"lint",
"test-run",