From 852658f10fd081e9d6e395e2ba328ba0af213dac Mon Sep 17 00:00:00 2001 From: orlnub123 Date: Tue, 12 Mar 2019 11:19:13 +0300 Subject: [PATCH] Only display unsuccessful lints --- tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks.py b/tasks.py index 4bd16fd..4cfd7c2 100644 --- a/tasks.py +++ b/tasks.py @@ -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