black.toml
author Martin von Zweigbergk <martinvonz@google.com>
Mon, 30 Nov 2020 09:47:46 -0800
changeset 46007 9dd5b129ff28
parent 44232 5e84a96d865b
permissions -rw-r--r--
tests: set old git default branch name for compatibility Git's default branch name has changed on my machine (from "master" to "main"). Let's set the old name in our tests so we're compatible with both defaults (and maybe still compatible with Git versions that don't know about the config option). Differential Revision: https://phab.mercurial-scm.org/D9470

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