black.toml
author Gregory Szorc <gregory.szorc@gmail.com>
Wed, 23 Oct 2019 18:39:08 -0700
changeset 43562 10454e788111
parent 43386 2247bf3cec76
child 44232 5e84a96d865b
permissions -rw-r--r--
packaging: install and run Inno files in a build directory Upcoming commits will refactor the Windows installers so their content is dynamically derived. In preparation for this, we copy the Inno files into a new build directory and run them from there. This required changing some relative paths to work from a new directory level but is otherwise a pretty straightforward change. Differential Revision: https://phab.mercurial-scm.org/D7157

[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