black.toml
author Augie Fackler <augie@google.com>
Fri, 06 Dec 2019 15:13:25 -0500
changeset 43811 d1587fadff06
parent 43386 2247bf3cec76
child 44147 5e84a96d865b
permissions -rw-r--r--
fuzz: suppress deprecated-register warnings in our compile These come from the Python.h headers still using the `register` keyword and our use of C++17. I think this will go away when we're using Python 3 for our fuzzing, but that can come later. Differential Revision: https://phab.mercurial-scm.org/D7562

[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