contrib/examples/fix.hgrc
author Martin von Zweigbergk <martinvonz@google.com>
Thu, 07 Nov 2019 03:59:22 -0800
changeset 43502 c093cc6e6c99
parent 43386 2247bf3cec76
child 43921 b78795c2a294
permissions -rw-r--r--
formatting: remove another data-ogre from the config example The fix extension will pass the contents on stdin and read the output from stdout. By invoking `rustfmt` as `rustfmt {rootpath}`, we tell rustfmt to format the given path and update it on disk. That also makes rustftm not produce the formatted output to stdout. So the fix extension ends up writing out empty files. Differential Revision: https://phab.mercurial-scm.org/D7304
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
42965
5dfb57af1148 contrib: add new examples area and start it out with a config for `hg fix`
Augie Fackler <augie@google.com>
parents:
diff changeset
     1
[fix]
5dfb57af1148 contrib: add new examples area and start it out with a config for `hg fix`
Augie Fackler <augie@google.com>
parents:
diff changeset
     2
clang-format:command = clang-format --style file -i
5dfb57af1148 contrib: add new examples area and start it out with a config for `hg fix`
Augie Fackler <augie@google.com>
parents:
diff changeset
     3
clang-format:pattern = (**.c or **.cc or **.h) and not "listfile:contrib/clang-format-ignorelist"
42966
f5ad85dd5f7e examples: add sample fix integration for `rustfmt`
Augie Fackler <augie@google.com>
parents: 42965
diff changeset
     4
43502
c093cc6e6c99 formatting: remove another data-ogre from the config example
Martin von Zweigbergk <martinvonz@google.com>
parents: 43386
diff changeset
     5
rustfmt:command = rustfmt
42966
f5ad85dd5f7e examples: add sample fix integration for `rustfmt`
Augie Fackler <augie@google.com>
parents: 42965
diff changeset
     6
rustfmt:pattern = set:**.rs
43065
31c1a5376745 examples: include a sample of how to use black with fix
Augie Fackler <augie@google.com>
parents: 42966
diff changeset
     7
43351
cb0d80831ee0 contrib: fix up example fix configuration for our move to released black
Augie Fackler <augie@google.com>
parents: 43225
diff changeset
     8
black:command = black --config=black.toml -
43386
2247bf3cec76 fsmonitor: remove pywatchman from exclusion rule
Gregory Szorc <gregory.szorc@gmail.com>
parents: 43351
diff changeset
     9
black:pattern = set:**.py - mercurial/thirdparty/** - "contrib/python-zstandard/**"