diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-12-14 00:12:23 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-12-14 00:12:23 +0900 |
commit | e645ea59dbeec3b295b6167245a9278624c64a6d (patch) | |
tree | fda23ea0f03f4e1b497327a1c16bc4c37f0f6a7f /Makefile | |
parent | c2b19243a3f6a39734bdf1244d858ee4f53fbc90 (diff) | |
parent | 6bb903058052390be5eedeb4941c4e31c3c75465 (diff) | |
download | sphinx-git-e645ea59dbeec3b295b6167245a9278624c64a6d.tar.gz |
Merge branch 'stable'
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -38,7 +38,7 @@ style-check: type-check: mypy sphinx/ -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 {} + @@ -65,6 +65,9 @@ clean-testfiles: clean-buildfiles: rm -rf build +clean-mypyfiles: + rm -rf .mypy_cache/ + pylint: @pylint --rcfile utils/pylintrc sphinx |