black.toml
author Augie Fackler <augie@google.com>
Tue, 15 Oct 2019 11:05:32 -0400
changeset 43239 6fcdcea2b03a
parent 43225 8343070ed758
child 43348 daa3b58906d5
permissions -rw-r--r--
dirstate: add some traces on listdir calls I'm starting to spend some time trying to make `hg status` do less work, and knowing what's happening in here and what's expensive is an important start. Differential Revision: https://phab.mercurial-scm.org/D7109

[tool.black]
line-length = 80
exclude = '''
build/
| wheelhouse/
| dist/
| packages/
| \.hg/
| \.mypy_cache/
| \.venv/
| mercurial/thirdparty/
| hgext/fsmonitor/pywatchman/
| contrib/python-zstandard/
| contrib/grey.py
'''
skip-string-normalization = true
quiet = true