black.toml
author Gregory Szorc <gregory.szorc@gmail.com>
Tue, 14 Jan 2020 17:53:43 -0800
changeset 44083 29a110e2776e
parent 43386 2247bf3cec76
child 44232 5e84a96d865b
permissions -rw-r--r--
sha1dc: use proper string functions on Python 2/3 PyString_FromStringAndSize doesn't exist on Python 3: we need to use PyUnicode_FromStringAndSize. The extension now compiles without warnings on Python 2 and 3. Differential Revision: https://phab.mercurial-scm.org/D7878

[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