black.toml
author Gregory Szorc <gregory.szorc@gmail.com>
Sat, 02 Nov 2019 12:51:28 -0700
branchstable
changeset 43386 2247bf3cec76
parent 43348 daa3b58906d5
child 44232 5e84a96d865b
permissions -rw-r--r--
fsmonitor: remove pywatchman from exclusion rule The recently vendored pywatchman code base is now formatted with black. We can now remove pywatchman from our black exclusion rule. Differential Revision: https://phab.mercurial-scm.org/D7202

[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