Files
new-premier/tasks.py
2024-04-16 14:31:05 +08:00

17 lines
212 B
Python

from invoke import task
@task
def dev(c):
c.run("manage runserver", pty=True)
@task
def style(c):
c.run("ruff check . --fix && ruff format .", pty=True)
@task
def lint(c):
c.run("ruff check .")