|
|
@ -23,8 +23,8 @@ def lint(c):
|
|
|
|
@task
|
|
|
|
@task
|
|
|
|
def delint(c):
|
|
|
|
def delint(c):
|
|
|
|
"""Applies automated linters to project"""
|
|
|
|
"""Applies automated linters to project"""
|
|
|
|
c.run("isort ./speech_collect ./tests ./tasks.py", pty=True)
|
|
|
|
c.run("isort ./{{ cookiecutter.project_slug }} ./tests ./tasks.py", pty=True)
|
|
|
|
c.run("black ./speech_collect ./tests ./tasks.py", pty=True)
|
|
|
|
c.run("black ./{{ cookiecutter.project_slug }} ./tests ./tasks.py", pty=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@task
|
|
|
|
@task
|
|
|
|