black.toml
author Matt Harbison <matt_harbison@yahoo.com>
Fri, 27 Dec 2019 18:54:57 -0500
changeset 43998 873d0fecb9a3
parent 43386 2247bf3cec76
child 44232 5e84a96d865b
permissions -rw-r--r--
hgweb: delete a local variable instead of setting to `None` The previous code was flagged by PyCharm as an unused variable assignment. Differential Revision: https://phab.mercurial-scm.org/D7761

[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