Skip to content

Commit 88127ad

Browse files
committed
fix invoke
1 parent 34dda74 commit 88127ad

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tasks.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,8 @@ def tutorials(c):
141141
@task
142142
def lint(c):
143143
check_dependencies(c)
144-
c.run("flake8 deepecho")
145-
c.run("flake8 tests")
146-
c.run("isort -c --recursive deepecho tests")
147-
c.run("pylint deepecho --rcfile=setup.cfg")
144+
c.run("ruff check .")
145+
c.run("ruff format . --check")
148146

149147

150148
def remove_readonly(func, path, _):

0 commit comments

Comments
 (0)