black.toml
author Augie Fackler <augie@google.com>
Fri, 06 Dec 2019 15:05:34 -0500
changeset 43809 51a99e09c54b
parent 43386 2247bf3cec76
child 44147 5e84a96d865b
permissions -rw-r--r--
fuzz: always define LLVMFuzzerInitialize() even if we don't need it This will make it easier to test our fuzzers outside oss-fuzz. Differential Revision: https://phab.mercurial-scm.org/D7560

[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