black.toml
author Gregory Szorc <gregory.szorc@gmail.com>
Sun, 04 Oct 2020 22:17:52 -0700
changeset 45644 439ce34d81e6
parent 44147 5e84a96d865b
permissions -rw-r--r--
packaging: normalize - to _ in WiX Id values - is not a valid identifier character in WiX Ids. So let's normalize accordingly. I discovered this issue after a subsequent change which introduces a directory with a - in its name. Differential Revision: https://phab.mercurial-scm.org/D9147

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