pyproject.toml
author Martin von Zweigbergk <martinvonz@google.com>
Mon, 24 Jan 2022 21:17:04 -0800
branchstable
changeset 48581 4f01821fa0ec
parent 48004 58fe6d127a01
permissions -rw-r--r--
unamend: error out when running on merge commit It's better to error out than to produce a bad commit. We do that same in `hg uncommit`. I haven't looked into how much work it is to make them work instead. Differential Revision: https://phab.mercurial-scm.org/D12087

[build-system]
requires = ["setuptools", "wheel"]

[tool.black]
line-length = 80
exclude = '''
build/
| wheelhouse/
| dist/
| packages/
| \.hg/
| \.mypy_cache/
| \.venv/
| mercurial/thirdparty/
'''
skip-string-normalization = true
quiet = true