Files
platformio-core/Makefile
T
2016-08-03 22:01:11 +03:00

17 lines
257 B
Makefile

lint:
pylint --rcfile=./.pylintrc ./platformio
isort:
isort -rc ./platformio
clean-docs:
rm -rf docs/_build
clean: clean-docs
find . -name \*.pyc -delete
find . -name __pycache__ -delete
rm -rf .cache
rm -rf build
rm -rf htmlcov
rm -f .coverage