black.toml
author Martin von Zweigbergk <martinvonz@google.com>
Fri, 15 Nov 2019 10:16:22 -0800
changeset 43694 0fd9e7a1cf36
parent 43386 2247bf3cec76
child 44147 5e84a96d865b
permissions -rw-r--r--
tests: document behavior of indent() with empty first line indent() is documented to indent all non-empty lines, but it still indents the first line even if it's empty. Let's have tests for that. Differential Revision: https://phab.mercurial-scm.org/D7431

[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