black.toml
author Kyle Lippincott <spectral@google.com>
Wed, 11 Dec 2019 19:42:05 -0800
changeset 43879 8caec25f5d8f
parent 43386 2247bf3cec76
child 44232 5e84a96d865b
permissions -rw-r--r--
merge: add commands.merge.require-rev to require an argument to hg merge This is related to commands.rebase.requiredest, commands.update.requiredest, and commands.push.require-revs. Since it isn't really a "destination", I went with require-rev to be similar to push's require-revs. Differential Revision: https://phab.mercurial-scm.org/D7620

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