black.toml
author Augie Fackler <augie@google.com>
Wed, 24 Feb 2021 12:40:54 -0500
changeset 46609 25b1610f8534
parent 46455 5be886200eb6
permissions -rw-r--r--
fuzz: if the caller of our makefile sets CC and CXX, trust them This should fix the broken fuzzing build, because we've been explicitly using clang++ but are now being given a CXX=afl++, which does extra stuff. Differential Revision: https://phab.mercurial-scm.org/D10066

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