Skip to content

Commit

Permalink
Only display unsuccessful lints
Browse files Browse the repository at this point in the history
  • Loading branch information
orlnub123 committed Mar 12, 2019
1 parent a964c1c commit 852658f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ def format(c):
@task
def lint(c):
c.run("flake8 .", warn=True)
c.run("isort -rc -c .", warn=True)
c.run("black --check .", warn=True)
c.run("isort -rc -c -q .", warn=True)
c.run("black --check -q .", warn=True)


@task
Expand Down

0 comments on commit 852658f

Please sign in to comment.