black.toml
author Martin von Zweigbergk <martinvonz@google.com>
Thu, 05 Dec 2019 08:59:23 -0800
changeset 43813 0f6782df1100
parent 43386 2247bf3cec76
child 44232 5e84a96d865b
permissions -rw-r--r--
exchange: replace a "not x in ys" by more Pythonic "x not in ys" Found by one of our (Google-)internal tools. Differential Revision: https://phab.mercurial-scm.org/D7546

[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