black.toml
author Gregory Szorc <gregory.szorc@gmail.com>
Mon, 04 Nov 2019 21:17:34 -0800
branchstable
changeset 43414 a0916e8819f6
parent 43386 2247bf3cec76
child 44232 5e84a96d865b
permissions -rw-r--r--
localrepo: use str for lookup in vars() vars() returns a dict of str. So always use a native str for the key lookup. Differential Revision: https://phab.mercurial-scm.org/D7227

[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