contrib/examples/fix.hgrc
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 27 Jan 2022 22:24:11 +0100
changeset 48693 de3ac3d2c60b
parent 46893 3d32b9759047
permissions -rw-r--r--
stream-clone: allow to change persistent-nodemap format during stream clone Persistent nodemap affect the store format. However it is fairly isolated and fast to generate locally. So not making it a fixed part of the stream clone is useful. This allow clients without persistent-nodemap support (default for client without Rust enabled, or simply older client). So it make it possible to enable persistent nodemap on client, where it can provide a massive boost. without too much consequence. To do so, we stop using it in the advertisement requirements for streaming and let the client add/remove the necessary file depending of its configuration. We still send the files as it seems like a small save to not regenerate them. In addition, the way we match them will overlap with the changelog-v2/revlog-v2 so we can't simply skip the associated patterns. Differential Revision: https://phab.mercurial-scm.org/D12096
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]
44008
ac72e17457e5 fix: correct the clang-format example hgrc so that it actually works
Kyle Lippincott <spectral@google.com>
parents: 43921
diff changeset
     2
clang-format:command = clang-format --style file
ac72e17457e5 fix: correct the clang-format example hgrc so that it actually works
Kyle Lippincott <spectral@google.com>
parents: 43921
diff changeset
     3
clang-format:pattern = set:(**.c or **.cc or **.h) and not "include:contrib/clang-format-ignorelist"
42966
f5ad85dd5f7e examples: add sample fix integration for `rustfmt`
Augie Fackler <augie@google.com>
parents: 42965
diff changeset
     4
44103
2077ffede71f examples: refer to nightly rustfmt in Windows-compatible way
Martin von Zweigbergk <martinvonz@google.com>
parents: 44069
diff changeset
     5
rustfmt:command = rustfmt +nightly
45620
426294d06ddc rust: move rustfmt.toml to repo root so it can be used by `hg fix`
Martin von Zweigbergk <martinvonz@google.com>
parents: 44147
diff changeset
     6
rustfmt:pattern = set:"**.rs" - "mercurial/thirdparty/**"
43065
31c1a5376745 examples: include a sample of how to use black with fix
Augie Fackler <augie@google.com>
parents: 42966
diff changeset
     7
46893
3d32b9759047 contrib: restore the `hg fix` configuration in the examples
Matt Harbison <matt_harbison@yahoo.com>
parents: 46774
diff changeset
     8
black:command = black --config=pyproject.toml -
44147
5e84a96d865b python-zstandard: blacken at 80 characters
Gregory Szorc <gregory.szorc@gmail.com>
parents: 44103
diff changeset
     9
black:pattern = set:**.py - mercurial/thirdparty/**
43921
b78795c2a294 examples: add an example configuration for go source files
Augie Fackler <augie@google.com>
parents: 43502
diff changeset
    10
b78795c2a294 examples: add an example configuration for go source files
Augie Fackler <augie@google.com>
parents: 43502
diff changeset
    11
# Mercurial doesn't have any Go code, but if we did this is how we
b78795c2a294 examples: add an example configuration for go source files
Augie Fackler <augie@google.com>
parents: 43502
diff changeset
    12
# would configure `hg fix` for Go:
b78795c2a294 examples: add an example configuration for go source files
Augie Fackler <augie@google.com>
parents: 43502
diff changeset
    13
go:command = gofmt
b78795c2a294 examples: add an example configuration for go source files
Augie Fackler <augie@google.com>
parents: 43502
diff changeset
    14
go:pattern = set:**.go