black.toml
author Raphaël Gomès <rgomes@octobus.net>
Wed, 16 Oct 2019 10:14:26 +0200
changeset 43280 5d4046594d6f
parent 43225 8343070ed758
child 43348 daa3b58906d5
permissions -rw-r--r--
rust-dirstatemap: remove additional lookups in dirstatemap We're copying this shortcut from the Python implementation, pretty standard for this codebase. Differential Revision: https://phab.mercurial-scm.org/D7117

[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