black.toml
author Matt Harbison <matt_harbison@yahoo.com>
Sat, 28 Dec 2019 02:02:34 -0500
changeset 44023 3216cabffd4a
parent 43386 2247bf3cec76
child 44147 5e84a96d865b
permissions -rw-r--r--
commit: change default `editor` parameter to None Flagged by PyCharm as a boolean not being callable later where it is used. There's no actual bug here because of `if editor` checks before using. Differential Revision: https://phab.mercurial-scm.org/D7768

[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