From bd430e5afd69d197d8409f87e94aa2a4791b23e7 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Tue, 2 Aug 2016 20:19:52 +0300 Subject: [PATCH] Makefile with useful targets --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..383bf6ee --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ + +lint: + pylint --rcfile=./.pylintrc ./platformio + +isort: + isort -rc ./platformio + +clean: + find . -name \*.pyc -delete \ No newline at end of file