black.toml
author Gregory Szorc <gregory.szorc@gmail.com>
Wed, 22 Jan 2020 20:01:38 -0800
branchstable
changeset 44157 624fe53ce1e7
parent 43386 2247bf3cec76
child 44147 5e84a96d865b
permissions -rw-r--r--
packaging: add configparser to inno requirements file This dependency is missing and pip complains about it in strict hashing mode. How this was missed, I have no clue. Differential Revision: https://phab.mercurial-scm.org/D7973

[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