D1116: Makefile: add target to apply clang-format in-place
durin42 (Augie Fackler)
phabricator at mercurial-scm.org
Mon Oct 16 15:53:44 UTC 2017
durin42 created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.
REVISION SUMMARY
This makes it easy to reformat files after you finish editing them.
REPOSITORY
rHG Mercurial
REVISION DETAIL
https://phab.mercurial-scm.org/D1116
AFFECTED FILES
Makefile
CHANGE DETAILS
diff --git a/Makefile b/Makefile
--- a/Makefile
+++ b/Makefile
@@ -122,6 +122,10 @@
check-code:
hg manifest | xargs python contrib/check-code.py
+format-c:
+ clang-format --style file -i \
+ `hg files 'set:(**.c or **.h) and not "listfile:contrib/clang-format-blacklist"'`
+
update-pot: i18n/hg.pot
i18n/hg.pot: $(PYFILES) $(DOCFILES) i18n/posplit i18n/hggettext
To: durin42, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list