Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2016-12-13 17:59:01 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2016-12-13 17:59:01 +0300
commit3a60eb984b3410a462a3d880ae96017d881bb416 (patch)
treef6a4bc6e697ecf3f08c10a49efdbf758ef0dbc39 /Makefile
parent7dabcdee91f1d0d9420f4926ad12a95c3aa4422f (diff)
Remove .mypy_cache on `make clean`
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 01e3a7837..652ade4f4 100644
--- a/Makefile
+++ b/Makefile
@@ -35,7 +35,7 @@ all: clean-pyc clean-backupfiles style-check test
style-check:
@$(PYTHON) utils/check_sources.py $(DONT_CHECK) .
-clean: clean-pyc clean-pycache clean-patchfiles clean-backupfiles clean-generated clean-testfiles clean-buildfiles
+clean: clean-pyc clean-pycache clean-patchfiles clean-backupfiles clean-generated clean-testfiles clean-buildfiles clean-mypyfiles
clean-pyc:
find . -name '*.pyc' -exec rm -f {} +
@@ -62,6 +62,9 @@ clean-testfiles:
clean-buildfiles:
rm -rf build
+clean-mypyfiles:
+ rm -rf .mypy_cache/
+
pylint:
@pylint --rcfile utils/pylintrc sphinx