From 8a55dcca04c59c6f51f547a88b512e4957f16fb9 Mon Sep 17 00:00:00 2001 From: Josh Klar Date: Fri, 21 Sep 2018 23:44:03 -0700 Subject: [PATCH] Helper makefile task to autofix some linter noise --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 79ad192..11bbce9 100644 --- a/Makefile +++ b/Makefile @@ -17,6 +17,9 @@ devdeps: Pipfile.lock lint: devdeps @pipenv run flake8 +fix-isort: devdeps + @find kmk/ boards/ entrypoints/ -name "*.py" | xargs pipenv run isort + .submodules: .gitmodules @echo "===> Pulling dependencies, this may take several minutes" @git submodule update --init --recursive