Add flake8 & isort tasks to taskipy

This commit is contained in:
thatmattlove 2021-09-10 01:18:59 -07:00
parent 99c7489441
commit 0e6c5e02ad

View file

@ -93,6 +93,8 @@ reportMissingImports = true
reportMissingTypeStubs = true
[tool.taskipy.tasks]
lint = {cmd = "flake8 hyperglass", help = "Run Flake8"}
sort = {cmd = "isort hyperglass", help = "Run iSort"}
start = {cmd = "uvicorn hyperglass.api:app", help = "Start hyperglass via Uvicorn"}
start-direct = {cmd = "python3 -m hyperglass.console start", help = "Start hyperglass via hyperglass.console.CLI"}
ui-build = {cmd = "python3 -m hyperglass.console build-ui", help = "Run a UI Build"}