black.toml
author Augie Fackler <augie@google.com>
Tue, 11 Feb 2020 00:08:28 -0500
changeset 44354 2e2cfc3bea0b
parent 44147 5e84a96d865b
permissions -rw-r--r--
context: use manifest.find() instead of two separate calls I noticed this while debugging an extension that's implementing the manifest interface. Always nice to save a function call. Differential Revision: https://phab.mercurial-scm.org/D8109

[tool.black]
line-length = 80
exclude = '''
build/
| wheelhouse/
| dist/
| packages/
| \.hg/
| \.mypy_cache/
| \.venv/
| mercurial/thirdparty/
'''
skip-string-normalization = true
quiet = true