From 76bfefa66c987ffb8004c234190aebda1d145065 Mon Sep 17 00:00:00 2001 From: Jason Carver Date: Fri, 26 Jan 2018 19:01:36 -0800 Subject: [PATCH] add `make lint-roll` to locally auto de-lint --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index b8424652..1a7f8c6c 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,9 @@ clean-pyc: lint: tox -elint +lint-roll: lint + isort --recursive tests + test: py.test tests