Makefile with useful targets

This commit is contained in:
Ivan Kravets
2016-08-02 20:19:52 +03:00
parent 758396c9ea
commit bd430e5afd

9
Makefile Normal file
View File

@ -0,0 +1,9 @@
lint:
pylint --rcfile=./.pylintrc ./platformio
isort:
isort -rc ./platformio
clean:
find . -name \*.pyc -delete