comparison contrib/examples/fix.hgrc @ 44008:ac72e17457e5

fix: correct the clang-format example hgrc so that it actually works There are three changes here: * Remove -i from `command`, it causes fix to eat your file and empty it out * Add `set:` to pattern, otherwise this is interpreted as just a glob * Switch `listfile:` to `include:`; `listfile:` is relative to the current working directory, while `include:` is relative to the repo root. This makes it so that you don't receive errors when running outside of the repo root about being unable to find the file. Differential Revision: https://phab.mercurial-scm.org/D7618
author Kyle Lippincott <spectral@google.com>
date Thu, 12 Dec 2019 14:28:31 -0800
parents b78795c2a294
children 5e0505d36aee
comparison
equal deleted inserted replaced
44007:109315c41d5e 44008:ac72e17457e5
1 [fix] 1 [fix]
2 clang-format:command = clang-format --style file -i 2 clang-format:command = clang-format --style file
3 clang-format:pattern = (**.c or **.cc or **.h) and not "listfile:contrib/clang-format-ignorelist" 3 clang-format:pattern = set:(**.c or **.cc or **.h) and not "include:contrib/clang-format-ignorelist"
4 4
5 rustfmt:command = rustfmt 5 rustfmt:command = rustfmt
6 rustfmt:pattern = set:**.rs 6 rustfmt:pattern = set:**.rs
7 7
8 black:command = black --config=black.toml - 8 black:command = black --config=black.toml -